HomeSort by relevance Sort by last modified time
    Searched defs:authenticate (Results 26 - 50 of 116) sorted by null

12 3 4 5

  /packages/apps/Settings/src/com/android/settings/fingerprint/
FingerprintUiHelper.java 57 mFingerprintManager.authenticate(
  /external/apache-http/src/org/apache/http/impl/auth/
DigestScheme.java 224 public Header authenticate( method in class:DigestScheme
  /external/mesa3d/src/gallium/auxiliary/vl/
vl_winsys_dri.c 327 xcb_dri2_authenticate_reply_t *authenticate = NULL; local
405 authenticate = xcb_dri2_authenticate_reply(scrn->conn, authenticate_cookie, NULL);
407 if (authenticate == NULL || !authenticate->authenticated)
426 free(authenticate);
439 free(authenticate);
  /frameworks/base/core/java/android/nfc/tech/
MifareClassic.java 316 * Authenticate a sector with key A.
332 * @param sectorIndex index of sector to authenticate, starting from 0
339 return authenticate(sectorIndex, key, true);
343 * Authenticate a sector with key B.
359 * @param sectorIndex index of sector to authenticate, starting from 0
366 return authenticate(sectorIndex, key, false);
369 private boolean authenticate(int sector, byte[] key, boolean keyA) throws IOException { method in class:MifareClassic
383 // Authenticate command takes a block address. Authenticating a block
384 // of a sector will authenticate the entire sector.
  /frameworks/base/core/tests/coretests/src/android/net/http/
DefaultHttpClientTest.java 136 digestScheme.processChallenge(new BasicHeader("WWW-Authenticate", challenge));
138 digestScheme.authenticate(new UsernamePasswordCredentials("username", "password"), get);
  /libcore/ojluni/src/main/java/java/net/
SocksSocketImpl.java 138 private boolean authenticate(byte method, InputStream in, method in class:SocksSocketImpl
140 return authenticate(method, in, out, 0L);
143 private boolean authenticate(byte method, InputStream in, method in class:SocksSocketImpl
401 if (!authenticate(data[1], in, out, deadlineMillis)) {
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/security/
FingerprintBoundKeysTest.java 300 mFingerprintManager.authenticate(
  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/client/
NetworkUtilities.java 104 public static String authenticate(String username, String password) { method in class:NetworkUtilities
  /external/mesa3d/src/egl/wayland/wayland-drm/
wayland-drm.h 84 int (*authenticate)(void *user_data, uint32_t id); member in struct:wayland_drm_callbacks
  /frameworks/base/services/autofill/java/com/android/server/autofill/ui/
AutoFillUI.java 72 void authenticate(int requestId, int datasetIndex, @NonNull IntentSender intent, method in interface:AutoFillUI.AutoFillUiCallback
192 mCallback.authenticate(response.getRequestId(),
  /hardware/libhardware/include/hardware/
fingerprint.h 201 * Cancel pending enroll or authenticate, sending FINGERPRINT_ERROR_CANCELED
261 int (*authenticate)(struct fingerprint_device *dev, uint64_t operation_id, uint32_t gid); member in struct:fingerprint_device
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/managedprovisioning/
AuthenticationBoundKeyTestActivity.java 260 // User is not authenticated, let's authenticate with device credentials.
394 mFingerprintManager.authenticate(
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
imaplib.py 43 'AUTHENTICATE': ('NONAUTH',),
112 AUTHENTICATE, and the last argument to APPEND which is passed as
327 def authenticate(self, mechanism, authobject): member in class:IMAP4
328 """Authenticate command - requires response processing.
349 typ, dat = self._simple_command('AUTHENTICATE', mech)
518 return self.authenticate('CRAM-MD5', self._CRAM_MD5_AUTH)
    [all...]
  /external/python/cpython2/Lib/
imaplib.py 53 'AUTHENTICATE': ('NONAUTH',),
122 AUTHENTICATE, and the last argument to APPEND which is passed as
340 def authenticate(self, mechanism, authobject): member in class:IMAP4
341 """Authenticate command - requires response processing.
362 typ, dat = self._simple_command('AUTHENTICATE', mech)
531 return self.authenticate('CRAM-MD5', self._CRAM_MD5_AUTH)
    [all...]
  /frameworks/av/media/libstagefright/rtsp/
MyTransmitter.h 268 void authenticate(const sp<ARTSPResponse> &response) { function in struct:android::MyTransmitter
269 ssize_t i = response->mHeaders.indexOfKey("www-authenticate");
386 LOG(INFO) << "FAILED to authenticate";
391 authenticate(response);
  /prebuilts/gdb/darwin-x86/lib/python2.7/
imaplib.py 43 'AUTHENTICATE': ('NONAUTH',),
112 AUTHENTICATE, and the last argument to APPEND which is passed as
327 def authenticate(self, mechanism, authobject): member in class:IMAP4
328 """Authenticate command - requires response processing.
349 typ, dat = self._simple_command('AUTHENTICATE', mech)
518 return self.authenticate('CRAM-MD5', self._CRAM_MD5_AUTH)
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
imaplib.py 43 'AUTHENTICATE': ('NONAUTH',),
112 AUTHENTICATE, and the last argument to APPEND which is passed as
327 def authenticate(self, mechanism, authobject): member in class:IMAP4
328 """Authenticate command - requires response processing.
349 typ, dat = self._simple_command('AUTHENTICATE', mech)
518 return self.authenticate('CRAM-MD5', self._CRAM_MD5_AUTH)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
imaplib.py 43 'AUTHENTICATE': ('NONAUTH',),
112 AUTHENTICATE, and the last argument to APPEND which is passed as
327 def authenticate(self, mechanism, authobject): member in class:IMAP4
328 """Authenticate command - requires response processing.
349 typ, dat = self._simple_command('AUTHENTICATE', mech)
518 return self.authenticate('CRAM-MD5', self._CRAM_MD5_AUTH)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
imaplib.py 43 'AUTHENTICATE': ('NONAUTH',),
112 AUTHENTICATE, and the last argument to APPEND which is passed as
327 def authenticate(self, mechanism, authobject): member in class:IMAP4
328 """Authenticate command - requires response processing.
349 typ, dat = self._simple_command('AUTHENTICATE', mech)
518 return self.authenticate('CRAM-MD5', self._CRAM_MD5_AUTH)
    [all...]
  /frameworks/base/core/java/android/hardware/fingerprint/
FingerprintManager.java 283 * Container for callback data from {@link FingerprintManager#authenticate(CryptoObject,
306 * @return crypto object provided to {@link FingerprintManager#authenticate(CryptoObject,
327 * Callback structure provided to {@link FingerprintManager#authenticate(CryptoObject,
329 * FingerprintManager#authenticate(CryptoObject, CancellationSignal,
490 public void authenticate(@Nullable CryptoObject crypto, @Nullable CancellationSignal cancel, method in class:FingerprintManager
492 authenticate(crypto, cancel, flags, callback, handler, UserHandle.myUserId()); method
512 public void authenticate(@Nullable CryptoObject crypto, @Nullable CancellationSignal cancel, method in class:FingerprintManager
532 mService.authenticate(mToken, sessionId, userId, mServiceReceiver, flags,
    [all...]
  /frameworks/base/services/autofill/java/com/android/server/autofill/
Session.java 587 public void authenticate(int requestId, int datasetIndex, IntentSender intent, Bundle extras) { method in class:Session
589 Slog.d(TAG, "authenticate(): requestId=" + requestId + "; datasetIdx=" + datasetIndex
595 Slog.w(TAG, "Call to Session#authenticate() rejected - session: "
    [all...]
  /external/apache-http/src/org/apache/http/impl/client/
DefaultRequestDirector.java 741 connect.addHeader(authScheme.authenticate(creds, connect));
    [all...]
  /external/mesa3d/src/egl/drivers/dri2/
egl_dri2.h 89 int (*authenticate)(_EGLDisplay *disp, uint32_t id); member in struct:dri2_egl_display_vtbl
platform_x11.c 570 xcb_dri2_authenticate_reply_t *authenticate; local
576 authenticate =
579 if (authenticate == NULL || !authenticate->authenticated)
582 free(authenticate);
599 _eglLog(_EGL_WARNING, "DRI2: failed to authenticate");
666 _eglLog(_EGL_WARNING, "DRI2: failed to authenticate");
    [all...]
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/framed/
HttpOverSpdyTest.java 215 @Test public void authenticate() throws Exception { method in class:HttpOverSpdyTest
217 .addHeader("www-authenticate: Basic realm=\"protected area\"")
218 .setBody("Please authenticate."));

Completed in 1095 milliseconds

12 3 4 5