Searched defs:auth (Results 1 - 12 of 12) sorted by relevance

/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.java155 * @param auth require the remote device to be authenticated
163 /*package*/ BluetoothSocket(int type, int fd, boolean auth, boolean encrypt, argument
165 this(type, fd, auth, encrypt, device, port, uuid, false, false);
172 * @param auth require the remote device to be authenticated
182 /*package*/ BluetoothSocket(int type, int fd, boolean auth, boolean encrypt, argument
196 mAuth = auth;
256 * @param auth require the remote device to be authenticated
263 private BluetoothSocket(int type, int fd, boolean auth, boolean encrypt, String address, argument
265 this(type, fd, auth, encrypt, new BluetoothDevice(address), port, null, false, false);
H A DBluetoothAdapter.java1628 boolean auth, boolean encrypt) throws IOException {
1630 socket = new BluetoothServerSocket(BluetoothSocket.TYPE_RFCOMM, auth,
1627 createNewRfcommSocketAndRecord(String name, UUID uuid, boolean auth, boolean encrypt) argument
/frameworks/base/core/java/android/content/
H A DContentProvider.java1845 String auth = uri.getAuthority();
1846 int userId = getUserIdFromAuthority(auth, UserHandle.USER_CURRENT);
1851 if (!matchesOurAuthorities(getAuthorityWithoutUserId(auth))) {
1864 public static int getUserIdFromAuthority(String auth, int defaultUserId) { argument
1865 if (auth == null) return defaultUserId;
1866 int end = auth.lastIndexOf('@');
1868 String userIdString = auth.substring(0, end);
1878 public static int getUserIdFromAuthority(String auth) { argument
1879 return getUserIdFromAuthority(auth, UserHandle.USER_CURRENT);
1899 public static String getAuthorityWithoutUserId(String auth) { argument
[all...]
H A DIntentFilter.java147 private static final String AUTH_STR = "auth";
1081 public final boolean hasDataAuthority(AuthorityEntry auth) { argument
1087 if (mDataAuthorities.get(i).match(auth)) {
/frameworks/base/core/java/android/app/
H A DContextImpl.java1998 protected IContentProvider acquireProvider(Context context, String auth) { argument
2000 ContentProvider.getAuthorityWithoutUserId(auth),
2001 resolveUserIdFromAuthority(auth), true);
2005 protected IContentProvider acquireExistingProvider(Context context, String auth) { argument
2007 ContentProvider.getAuthorityWithoutUserId(auth),
2008 resolveUserIdFromAuthority(auth), true);
2017 protected IContentProvider acquireUnstableProvider(Context c, String auth) { argument
2019 ContentProvider.getAuthorityWithoutUserId(auth),
2020 resolveUserIdFromAuthority(auth), false);
2039 protected int resolveUserIdFromAuthority(String auth) { argument
[all...]
H A DActivityThread.java4764 Context c, String auth, int userId, boolean stable) {
4765 final IContentProvider provider = acquireExistingProvider(c, auth, userId, stable);
4779 getApplicationThread(), auth, userId, stable);
4783 Slog.e(TAG, "Failed to find provider info for " + auth);
4863 Context c, String auth, int userId, boolean stable) {
4865 final ProviderKey key = new ProviderKey(auth, userId);
4876 Log.i(TAG, "Acquiring provider " + auth + " for user " + userId
5080 for (String auth : auths) {
5081 final ProviderKey key = new ProviderKey(auth, userId);
5085 + " already published as " + auth);
4763 acquireProvider( Context c, String auth, int userId, boolean stable) argument
4862 acquireExistingProvider( Context c, String auth, int userId, boolean stable) argument
[all...]
/frameworks/base/services/core/java/com/android/server/pm/
H A DSettings.java2878 IntentFilter.AuthorityEntry auth = tmpPa.getDataAuthority(iauth);
2882 if (auth.getHost() != null) {
2883 builder.authority(auth.getHost());
2890 scheme, null, auth, path, userId);
2896 if (auth.getHost() != null) {
2897 builder.authority(auth.getHost());
2902 scheme, null, auth, null, userId);
2948 IntentFilter.AuthorityEntry auth, PatternMatcher path, int userId) {
3009 if (auth != null) {
3010 filter.addDataAuthority(auth);
2946 applyDefaultPreferredActivityLPw(PackageManagerService service, Intent intent, int flags, ComponentName cn, String scheme, PatternMatcher ssp, IntentFilter.AuthorityEntry auth, PatternMatcher path, int userId) argument
[all...]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiNative.java929 [persistent] [join|auth] [go_intent=<0..15>] [freq=<in MHz>] */
2220 int auth; field in class:WifiNative.WifiPnoNetwork
2232 auth |= 2;
2235 auth |= 4;
2237 auth |= 1;
2239 auth |= 1;
2241 // auth = 0;
2252 sbuf.append(" auth=").append(this.auth);

Completed in 4602 milliseconds