Searched defs:nonce (Results 1 - 23 of 23) sorted by relevance

/frameworks/base/libs/storage/
H A DIObbActionListener.cpp33 virtual void onObbResult(const String16& filename, const int32_t nonce, const int32_t state) { } argument
47 int32_t nonce = data.readInt32(); local
49 onObbResult(filename, nonce, state);
H A DIMountService.cpp439 const sp<IObbActionListener>& token, int32_t nonce)
447 data.writeInt32(nonce);
460 const sp<IObbActionListener>& token, const int32_t nonce)
467 data.writeInt32(nonce);
438 mountObb(const String16& rawPath, const String16& canonicalPath, const String16& key, const sp<IObbActionListener>& token, int32_t nonce) argument
459 unmountObb(const String16& filename, const bool force, const sp<IObbActionListener>& token, const int32_t nonce) argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
H A DIsimRecords.java63 String getIsimChallengeResponse(String nonce); argument
H A DIsimUiccRecords.java435 public String getIsimChallengeResponse(String nonce){ argument
436 if (DBG) log("getIsimChallengeResponse-nonce:"+nonce);
439 mCi.requestIsimAuthentication(nonce,obtainMessage(EVENT_AKA_AUTHENTICATE_DONE));
/frameworks/base/core/java/android/os/storage/
H A DIObbActionListener.java72 int nonce;
73 nonce = data.readInt();
76 this.onObbResult(filename, nonce, status);
106 public void onObbResult(String filename, int nonce, int status) argument
113 _data.writeInt(nonce);
132 * @param nonce identifier that is meaningful to the receiver
135 public void onObbResult(String filename, int nonce, int status) throws RemoteException; argument
H A DStorageManager.java86 * Next available nonce
116 public void onObbResult(String filename, int nonce, int status) { argument
119 delegate = mListeners.get(nonce);
121 mListeners.remove(nonce);
134 mListeners.put(delegate.nonce, delegate);
137 return delegate.nonce;
152 private final int nonce; field in class:StorageManager.ObbListenerDelegate
155 nonce = getNextNonce();
465 final int nonce = mObbActionListener.addListener(listener);
466 mMountService.mountObb(rawPath, canonicalPath, key, mObbActionListener, nonce);
[all...]
H A DIMountService.java492 IObbActionListener token, int nonce) throws RemoteException {
501 _data.writeInt(nonce);
518 String rawPath, boolean force, IObbActionListener token, int nonce)
527 _data.writeInt(nonce);
1221 int nonce;
1222 nonce = data.readInt();
1223 mountObb(rawPath, canonicalPath, key, observer, nonce);
1235 int nonce;
1236 nonce = data.readInt();
1237 unmountObb(filename, force, observer, nonce);
491 mountObb(String rawPath, String canonicalPath, String key, IObbActionListener token, int nonce) argument
517 unmountObb( String rawPath, boolean force, IObbActionListener token, int nonce) argument
1489 mountObb(String rawPath, String canonicalPath, String key, IObbActionListener token, int nonce) argument
1534 unmountObb(String rawPath, boolean force, IObbActionListener token, int nonce) argument
[all...]
/frameworks/base/native/android/
H A Dstorage_manager.cpp44 virtual void onObbResult(const android::String16& filename, const int32_t nonce,
51 : nonce(_nonce)
56 int32_t nonce; member in class:ObbCallback
105 void fireCallback(const char* filename, const int32_t nonce, const int32_t state) { argument
112 if (cb->nonce == nonce) {
141 mMountService->mountObb(rawPath16, canonicalPath16, key16, mObbActionListener, cb->nonce);
147 mMountService->unmountObb(filename16, force, mObbActionListener, cb->nonce);
166 void ObbActionListener::onObbResult(const android::String16& filename, const int32_t nonce, const int32_t state) { argument
167 mStorageManager->fireCallback(String8(filename).string(), nonce, stat
[all...]
/frameworks/base/obex/javax/obex/
H A DHeaderSet.java217 /*package*/ byte[] nonce; field in class:HeaderSet
627 nonce = new byte[16];
629 nonce[i] = (byte)mRandom.nextInt();
632 mAuthChall = ObexHelper.computeAuthenticationChallenge(nonce, realm, access, userID);
H A DObexHelper.java941 * @param nonce the challenge that will be provided to the peer; the
953 public static byte[] computeAuthenticationChallenge(byte[] nonce, String realm, boolean access, argument
957 if (nonce.length != 16) {
992 // Include the nonce field in the header
995 System.arraycopy(nonce, 0, authChall, 2, 16);
/frameworks/native/include/input/
H A DInputDevice.h53 uint16_t nonce; member in struct:android::InputDeviceIdentifier
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DPhoneSubInfo.java259 public String getIsimChallengeResponse(String nonce){ argument
264 return isim.getIsimChallengeResponse(nonce);
H A DPhoneSubInfoController.java272 public String getIsimChallengeResponse(String nonce) throws RemoteException { argument
274 return phoneSubInfoProxy.getIsimChallengeResponse(nonce);
H A DPhoneSubInfoProxy.java258 public String getIsimChallengeResponse(String nonce) { argument
259 return mPhoneSubInfo.getIsimChallengeResponse(nonce);
H A DCommandsInterface.java1687 * challenge/response algorithm for IMS authentication. The nonce string
1690 * @param nonce the nonce string to pass with the ISIM authentication request
1695 public void requestIsimAuthentication(String nonce, Message response); argument
H A DRIL.java4385 public void requestIsimAuthentication(String nonce, Message response) { argument
4388 rr.mParcel.writeString(nonce);
/frameworks/base/core/java/android/net/http/
H A DRequestHandle.java240 String nonce,
246 username, password, realm, nonce, QOP, algorithm, opaque);
299 String nonce,
314 String digest = computeDigest(A1, A2, nonce, QOP, nc, cnonce);
319 response += "nonce=" + doubleQuote(nonce) + ", ";
353 String A1, String A2, String nonce, String QOP, String nc, String cnonce) {
359 return KD(H(A1), nonce + ":" + H(A2));
362 return KD(H(A1), nonce + ":" + nc + ":" + cnonce + ":" + QOP + ":" + H(A2));
236 setupDigestAuthResponse(boolean isProxy, String username, String password, String realm, String nonce, String QOP, String algorithm, String opaque) argument
296 computeDigestAuthResponse(String username, String password, String realm, String nonce, String QOP, String algorithm, String opaque) argument
352 computeDigest( String A1, String A2, String nonce, String QOP, String nc, String cnonce) argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
H A DImsPhoneCommandInterface.java543 public void requestIsimAuthentication(String nonce, Message response) { argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
H A DSipCommandInterface.java544 public void requestIsimAuthentication(String nonce, Message response) { argument
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
H A DUsimDataDownloadCommands.java628 public void requestIsimAuthentication(String nonce, Message response) { argument
/frameworks/base/services/core/java/com/android/server/
H A DMountService.java271 IObbActionListener token, int nonce) {
281 this.nonce = nonce;
295 final int nonce; field in class:MountService.ObbState
2147 String rawPath, String canonicalPath, String key, IObbActionListener token, int nonce) {
2153 final ObbState obbState = new ObbState(rawPath, canonicalPath, callingUid, token, nonce);
2162 public void unmountObb(String rawPath, boolean force, IObbActionListener token, int nonce) { argument
2174 rawPath, existingState.canonicalPath, callingUid, token, nonce);
2739 obbState.token.onObbResult(obbState.rawPath, obbState.nonce,
2833 mObbState.token.onObbResult(mObbState.rawPath, mObbState.nonce, statu
270 ObbState(String rawPath, String canonicalPath, int callingUid, IObbActionListener token, int nonce) argument
2146 mountObb( String rawPath, String canonicalPath, String key, IObbActionListener token, int nonce) argument
[all...]
/frameworks/base/telephony/java/android/telephony/
H A DTelephonyManager.java3083 public String getIsimChallengeResponse(String nonce){ argument
3085 return getSubscriberInfo().getIsimChallengeResponse(nonce);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/test/
H A DSimulatedCommands.java1669 public void requestIsimAuthentication(String nonce, Message response) { argument

Completed in 548 milliseconds