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

/frameworks/base/libs/storage/
H A DIObbActionListener.cpp33 virtual void onObbResult(const String16& /* filename */, const int32_t /* nonce */,
48 int32_t nonce = data.readInt32(); local
50 onObbResult(filename, nonce, state);
H A DIMountService.cpp446 const sp<IObbActionListener>& token, int32_t nonce)
454 data.writeInt32(nonce);
467 const sp<IObbActionListener>& token, const int32_t nonce)
474 data.writeInt32(nonce);
445 mountObb(const String16& rawPath, const String16& canonicalPath, const String16& key, const sp<IObbActionListener>& token, int32_t nonce) argument
466 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.java436 public String getIsimChallengeResponse(String nonce){ argument
437 if (DBG) log("getIsimChallengeResponse-nonce:"+nonce);
440 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.java215 public void onObbResult(String filename, int nonce, int status) { argument
218 delegate = mListeners.get(nonce);
220 mListeners.remove(nonce);
233 mListeners.put(delegate.nonce, delegate);
236 return delegate.nonce;
251 private final int nonce; field in class:StorageManager.ObbListenerDelegate
254 nonce = getNextNonce();
419 final int nonce = mObbActionListener.addListener(listener);
420 mMountService.mountObb(rawPath, canonicalPath, key, mObbActionListener, nonce);
456 final int nonce
[all...]
H A DIMountService.java493 IObbActionListener token, int nonce) throws RemoteException {
502 _data.writeInt(nonce);
519 String rawPath, boolean force, IObbActionListener token, int nonce)
528 _data.writeInt(nonce);
1538 int nonce;
1539 nonce = data.readInt();
1540 mountObb(rawPath, canonicalPath, key, observer, nonce);
1552 int nonce;
1553 nonce = data.readInt();
1554 unmountObb(filename, force, observer, nonce);
492 mountObb(String rawPath, String canonicalPath, String key, IObbActionListener token, int nonce) argument
518 unmountObb( String rawPath, boolean force, IObbActionListener token, int nonce) argument
1943 mountObb(String rawPath, String canonicalPath, String key, IObbActionListener token, int nonce) argument
1988 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.java238 /*package*/ byte[] nonce; field in class:HeaderSet
681 nonce = new byte[16];
686 nonce[i] = (byte)mRandom.nextInt();
689 mAuthChall = ObexHelper.computeAuthenticationChallenge(nonce, realm, access, userID);
H A DObexHelper.java987 * @param nonce the challenge that will be provided to the peer; the
999 public static byte[] computeAuthenticationChallenge(byte[] nonce, String realm, boolean access, argument
1003 if (nonce.length != 16) {
1038 // Include the nonce field in the header
1041 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.java287 public String getIsimChallengeResponse(String nonce){ argument
292 return isim.getIsimChallengeResponse(nonce);
H A DPhoneSubInfoController.java266 public String getIsimChallengeResponse(String nonce) throws RemoteException { argument
268 return phoneSubInfoProxy.getIsimChallengeResponse(nonce);
H A DPhoneSubInfoProxy.java261 public String getIsimChallengeResponse(String nonce) { argument
262 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.java4524 public void requestIsimAuthentication(String nonce, Message response) { argument
4527 rr.mParcel.writeString(nonce);
/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/src/java/com/android/internal/telephony/test/
H A DSimulatedCommands.java1669 public void requestIsimAuthentication(String nonce, Message response) { argument
/frameworks/base/services/core/java/com/android/server/
H A DMountService.java454 IObbActionListener token, int nonce) {
464 this.nonce = nonce;
478 final int nonce; field in class:MountService.ObbState
2296 String rawPath, String canonicalPath, String key, IObbActionListener token, int nonce) {
2302 final ObbState obbState = new ObbState(rawPath, canonicalPath, callingUid, token, nonce);
2311 public void unmountObb(String rawPath, boolean force, IObbActionListener token, int nonce) { argument
2323 rawPath, existingState.canonicalPath, callingUid, token, nonce);
2893 obbState.token.onObbResult(obbState.rawPath, obbState.nonce,
2988 mObbState.token.onObbResult(mObbState.rawPath, mObbState.nonce, statu
453 ObbState(String rawPath, String canonicalPath, int callingUid, IObbActionListener token, int nonce) argument
2295 mountObb( String rawPath, String canonicalPath, String key, IObbActionListener token, int nonce) argument
[all...]
/frameworks/base/telephony/java/android/telephony/
H A DTelephonyManager.java3402 public String getIsimChallengeResponse(String nonce){ argument
3407 return info.getIsimChallengeResponse(nonce);

Completed in 443 milliseconds