[go: nahoru, domu]

Searched refs:auth (Results 1 - 25 of 26) sorted by relevance

12

/frameworks/base/obex/javax/obex/
H A DSessionNotifier.java120 * @param auth the <code>Authenticator</code> to use with this connection;
127 ObexSession acceptAndOpen(ServerRequestHandler handler, Authenticator auth) throws IOException; argument
H A DClientSession.java299 // when auth is initiated by client ,save the digest
325 public void setAuthenticator(Authenticator auth) throws IOException { argument
326 if (auth == null) {
329 mAuthenticator = auth;
352 // when auth is initiated by client ,save the digest
H A DServerSession.java70 * @param auth the authenticator to use with this connection
74 public ServerSession(ObexTransport trans, ServerRequestHandler handler, Authenticator auth) argument
76 mAuthenticator = auth;
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothServerSocket.java79 * @param auth require the remote device to be authenticated
85 /*package*/ BluetoothServerSocket(int type, boolean auth, boolean encrypt, int port) argument
88 mSocket = new BluetoothSocket(type, -1, auth, encrypt, null, port, null);
97 * @param auth require the remote device to be authenticated
105 /*package*/ BluetoothServerSocket(int type, boolean auth, boolean encrypt, int port, argument
109 mSocket = new BluetoothSocket(type, -1, auth, encrypt, null, port, null, mitm,
119 * @param auth require the remote device to be authenticated
125 /*package*/ BluetoothServerSocket(int type, boolean auth, boolean encrypt, ParcelUuid uuid) argument
127 mSocket = new BluetoothSocket(type, -1, auth, encrypt, null, -1, uuid);
H A DBluetoothSocket.java156 * @param auth require the remote device to be authenticated
164 /*package*/ BluetoothSocket(int type, int fd, boolean auth, boolean encrypt, argument
166 this(type, fd, auth, encrypt, device, port, uuid, false, false);
173 * @param auth require the remote device to be authenticated
183 /*package*/ BluetoothSocket(int type, int fd, boolean auth, boolean encrypt, argument
197 mAuth = auth;
257 * @param auth require the remote device to be authenticated
264 private BluetoothSocket(int type, int fd, boolean auth, boolean encrypt, String address, argument
266 this(type, fd, auth, encrypt, new BluetoothDevice(address), port, null, false, false);
H A DBluetoothAdapter.java1706 boolean auth, boolean encrypt) throws IOException {
1708 socket = new BluetoothServerSocket(BluetoothSocket.TYPE_RFCOMM, auth,
1705 createNewRfcommSocketAndRecord(String name, UUID uuid, boolean auth, boolean encrypt) argument
/frameworks/base/core/tests/coretests/src/android/net/http/
H A DDefaultHttpClientTest.java31 import org.apache.http.auth.AuthenticationException;
32 import org.apache.http.auth.UsernamePasswordCredentials;
34 import org.apache.http.impl.auth.DigestScheme;
/frameworks/base/core/java/android/content/
H A DContentProvider.java1848 String auth = uri.getAuthority();
1849 int userId = getUserIdFromAuthority(auth, UserHandle.USER_CURRENT);
1854 if (!matchesOurAuthorities(getAuthorityWithoutUserId(auth))) {
1867 public static int getUserIdFromAuthority(String auth, int defaultUserId) { argument
1868 if (auth == null) return defaultUserId;
1869 int end = auth.lastIndexOf('@');
1871 String userIdString = auth.substring(0, end);
1881 public static int getUserIdFromAuthority(String auth) { argument
1882 return getUserIdFromAuthority(auth, UserHandle.USER_CURRENT);
1902 public static String getAuthorityWithoutUserId(String auth) { argument
[all...]
H A DContentResolver.java1466 final String auth = uri.getAuthority();
1467 if (auth != null) {
1468 return acquireProvider(mContext, auth);
1485 final String auth = uri.getAuthority();
1486 if (auth != null) {
1487 return acquireExistingProvider(mContext, auth);
1513 String auth = uri.getAuthority();
1514 if (auth != null) {
H A DIntentFilter.java147 private static final String AUTH_STR = "auth";
1091 public final boolean hasDataAuthority(AuthorityEntry auth) { argument
1097 if (mDataAuthorities.get(i).match(auth)) {
/frameworks/base/keystore/tests/src/android/security/
H A DKeyPairGeneratorSpecTest.java24 import javax.security.auth.x500.X500Principal;
/frameworks/base/core/java/android/security/net/config/
H A DDirectoryCertificateSource.java39 import javax.security.auth.x500.X500Principal;
/frameworks/base/keystore/java/android/security/
H A DKeyPairGeneratorSpec.java34 import javax.security.auth.x500.X500Principal;
/frameworks/base/keystore/java/android/security/keystore/
H A DDelegatingX509Certificate.java37 import javax.security.auth.x500.X500Principal;
H A DKeyGenParameterSpec.java37 import javax.security.auth.x500.X500Principal;
/frameworks/base/services/core/java/com/android/server/job/controllers/
H A DContentObserverController.java111 for (String auth : taskStatus.changedAuthorities) {
112 taskStatus.contentObserverJobInstance.mChangedAuthorities.add(auth);
/frameworks/base/core/java/android/app/
H A DContextImpl.java2247 protected IContentProvider acquireProvider(Context context, String auth) { argument
2249 ContentProvider.getAuthorityWithoutUserId(auth),
2250 resolveUserIdFromAuthority(auth), true);
2254 protected IContentProvider acquireExistingProvider(Context context, String auth) { argument
2256 ContentProvider.getAuthorityWithoutUserId(auth),
2257 resolveUserIdFromAuthority(auth), true);
2266 protected IContentProvider acquireUnstableProvider(Context c, String auth) { argument
2268 ContentProvider.getAuthorityWithoutUserId(auth),
2269 resolveUserIdFromAuthority(auth), false);
2288 protected int resolveUserIdFromAuthority(String auth) { argument
[all...]
H A DActivityThread.java5420 Context c, String auth, int userId, boolean stable) {
5421 final IContentProvider provider = acquireExistingProvider(c, auth, userId, stable);
5435 getApplicationThread(), auth, userId, stable);
5440 Slog.e(TAG, "Failed to find provider info for " + auth);
5520 Context c, String auth, int userId, boolean stable) {
5522 final ProviderKey key = new ProviderKey(auth, userId);
5533 Log.i(TAG, "Acquiring provider " + auth + " for user " + userId
5738 for (String auth : auths) {
5739 final ProviderKey key = new ProviderKey(auth, userId);
5743 + " already published as " + auth);
5419 acquireProvider( Context c, String auth, int userId, boolean stable) argument
5519 acquireExistingProvider( Context c, String auth, int userId, boolean stable) argument
[all...]
/frameworks/base/core/java/org/apache/http/conn/ssl/
H A DAndroidDistinguishedNameParser.java23 import javax.security.auth.x500.X500Principal;
/frameworks/base/packages/Osu/src/com/android/hotspot2/osu/
H A DWiFiKeyManager.java24 import javax.security.auth.x500.X500Principal;
/frameworks/base/keystore/tests/src/android/security/keystore/
H A DAndroidKeyPairGeneratorTest.java46 import javax.security.auth.x500.X500Principal;
/frameworks/base/services/core/java/com/android/server/content/
H A DSyncStorageEngine.java909 for (AuthorityInfo auth : acc.authorities.values()) {
910 removing.put(auth.ident, auth);
922 AuthorityInfo auth = removing.valueAt(i);
924 mAuthorityRemovedListener.onAuthorityRemoved(auth.target);
958 + " auth=" + activeSyncContext.mSyncOperation.target
986 + " auth=" + syncInfo.authority);
1645 + " auth=" + authorityName
1692 + accountName + " auth=" + authorityName
/frameworks/base/packages/Osu/src/com/android/hotspot2/est/
H A DESTHandler.java59 import javax.security.auth.x500.X500Principal;
/frameworks/base/services/core/java/com/android/server/pm/
H A DSettings.java3145 IntentFilter.AuthorityEntry auth = tmpPa.getDataAuthority(iauth);
3149 if (auth.getHost() != null) {
3150 builder.authority(auth.getHost());
3157 scheme, null, auth, path, userId);
3163 if (auth.getHost() != null) {
3164 builder.authority(auth.getHost());
3169 scheme, null, auth, null, userId);
3215 IntentFilter.AuthorityEntry auth, PatternMatcher path, int userId) {
3277 if (auth != null) {
3278 filter.addDataAuthority(auth);
3213 applyDefaultPreferredActivityLPw(PackageManagerService service, Intent intent, int flags, ComponentName cn, String scheme, PatternMatcher ssp, IntentFilter.AuthorityEntry auth, PatternMatcher path, int userId) argument
[all...]
/frameworks/base/
H A Dcompiled-classes-phone7590 javax.security.auth.callback.UnsupportedCallbackException
7591 javax.security.auth.x500.X500Principal
7753 org.apache.http.auth.AuthSchemeFactory
7754 org.apache.http.auth.AuthSchemeRegistry
7755 org.apache.http.auth.AuthState
7756 org.apache.http.auth.AuthenticationException
7859 org.apache.http.impl.auth.BasicSchemeFactory
7860 org.apache.http.impl.auth.DigestSchemeFactory

Completed in 653 milliseconds

12