Searched refs:token (Results 1 - 25 of 290) sorted by relevance

1234567891011>>

/frameworks/base/core/java/android/os/
H A DIUpdateLock.aidl25 void acquireUpdateLock(IBinder token, String tag);
26 void releaseUpdateLock(IBinder token);
H A DIVibratorService.aidl23 void vibrate(int uid, String opPkg, long milliseconds, int usageHint, IBinder token);
24 void vibratePattern(int uid, String opPkg, in long[] pattern, int repeat, int usageHint, IBinder token);
25 void cancelVibrate(IBinder token);
H A DTokenWatcher.java59 * Record that this token has been acquired. When acquire is called, and
63 * @param token An IBinder object. If this token has already been acquired,
68 public void acquire(IBinder token, String tag) argument
75 Death d = new Death(token, tag);
77 token.linkToDeath(d, 0);
81 mTokens.put(token, d);
90 public void cleanup(IBinder token, boolean unlink) argument
93 Death d = mTokens.remove(token);
95 d.token
106 release(IBinder token) argument
182 IBinder token; field in class:TokenWatcher.Death
185 Death(IBinder token, String tag) argument
[all...]
/frameworks/base/media/java/android/media/midi/
H A DIMidiDeviceServer.aidl25 ParcelFileDescriptor openInputPort(IBinder token, int portNumber);
26 ParcelFileDescriptor openOutputPort(IBinder token, int portNumber);
27 void closePort(IBinder token);
31 void connectPorts(IBinder token, in ParcelFileDescriptor pfd, int outputPortNumber);
H A DIMidiDeviceOpenCallback.aidl24 void onDeviceOpened(in IMidiDeviceServer server, IBinder token);
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/
H A DAlarmHandler.java4 public void wake(Object token); argument
/frameworks/base/core/java/android/content/pm/
H A DKeySet.java31 private IBinder token; field in class:KeySet
34 public KeySet(IBinder token) { argument
35 if (token == null) {
36 throw new NullPointerException("null value for KeySet IBinder token");
38 this.token = token;
43 return token;
51 return token == ks.token;
59 return token
[all...]
/frameworks/compile/mclinker/lib/Script/
H A DScriptScanner.ll19 typedef mcld::ScriptParser::token token;
22 #define yyterminate() return token::END
68 return token::LINKER_SCRIPT;
79 <LDSCRIPT>"ENTRY" { return token::ENTRY; }
81 <LDSCRIPT>"INCLUDE" { return token::INCLUDE; }
82 <LDSCRIPT>"INPUT" { return token::INPUT; }
83 <LDSCRIPT>"GROUP" { return token::GROUP; }
84 <LDSCRIPT>"AS_NEEDED" { return token::AS_NEEDED; }
85 <LDSCRIPT>"OUTPUT" { return token
[all...]
/frameworks/native/opengl/libagl/
H A DTokenizer.cpp50 uint32_t token = run.first + run.length; local
51 _insertTokenAt(token, 1);
52 return token;
55 bool Tokenizer::isAcquired(uint32_t token) const
57 return (_indexOrderOf(token) >= 0);
60 status_t Tokenizer::reserve(uint32_t token) argument
63 const ssize_t i = _indexOrderOf(token, &o);
65 return BAD_VALUE; // this token is already taken
67 ssize_t err = _insertTokenAt(token, o);
71 status_t Tokenizer::release(uint32_t token) argument
102 _indexOrderOf(uint32_t token, size_t* order) const argument
129 _insertTokenAt(uint32_t token, size_t index) argument
[all...]
H A DTokenManager.cpp27 // token 0 is always reserved
47 const GLuint token = *tokens++; local
48 if (token) {
49 mTokenizer.release(token);
54 bool TokenManager::isTokenValid(GLuint token) const
57 return mTokenizer.isAcquired(token);
H A DTokenizer.h37 status_t reserve(uint32_t token);
38 status_t release(uint32_t token);
39 bool isAcquired(uint32_t token) const;
50 ssize_t _indexOrderOf(uint32_t token, size_t* order=0) const;
51 ssize_t _insertTokenAt(uint32_t token, size_t index);
/frameworks/base/core/java/android/app/
H A DIBackupAgent.aidl44 * @param token Opaque token identifying this transaction. This must
54 int token, IBackupManager callbackBinder);
71 * @param token Opaque token identifying this transaction. This must
81 int token, IBackupManager callbackBinder);
92 * @param token Opaque token identifying this transaction. This must
100 void doFullBackup(in ParcelFileDescriptor data, int token, IBackupManager callbackBinder);
105 void doMeasureFullBackup(int token, IBackupManage
[all...]
/frameworks/base/core/java/android/view/
H A DIGraphicsStats.aidl25 ParcelFileDescriptor requestBufferForProcess(String packageName, IBinder token);
H A DIWindowManager.aidl78 void pauseKeyDispatching(IBinder token);
79 void resumeKeyDispatching(IBinder token);
81 void addWindowToken(IBinder token, int type);
82 void removeWindowToken(IBinder token);
83 void addAppToken(int addPos, IApplicationToken token, int groupId, int stackId,
86 void setAppTask(IBinder token, int taskId);
87 void setAppOrientation(IApplicationToken token, int requestedOrientation);
88 int getAppOrientation(IApplicationToken token);
89 void setFocusedApp(IBinder token, boolean moveFocusNow);
105 void setAppStartingWindow(IBinder token, Strin
[all...]
/frameworks/base/media/java/android/media/
H A DIRingtonePlayer.aidl28 void play(IBinder token, in Uri uri, in AudioAttributes aa, float volume, boolean looping);
29 void stop(IBinder token);
30 boolean isPlaying(IBinder token);
31 void setPlaybackProperties(IBinder token, float volume, boolean looping);
/frameworks/base/core/java/android/hardware/fingerprint/
H A DIFingerprintService.aidl30 void authenticate(IBinder token, long sessionId, int userId,
34 void cancelAuthentication(IBinder token, String opPackageName);
37 void enroll(IBinder token, in byte [] cryptoToken, int groupId, IFingerprintServiceReceiver receiver,
41 void cancelEnrollment(IBinder token);
44 void remove(IBinder token, int fingerId, int groupId, IFingerprintServiceReceiver receiver);
55 // Get a pre-enrollment authentication token
56 long preEnroll(IBinder token);
58 // Finish an enrollment sequence and invalidate the authentication token
59 int postEnroll(IBinder token);
/frameworks/base/core/java/android/util/
H A DJsonReader.java33 * Within JSON objects, name/value pairs are represented by a single token.
193 * long as the longest token that can be reported as a number.
211 * The type of the next token to be returned by {@link #peek} and {@link
214 private JsonToken token; field in class:JsonReader
273 * Consumes the next token from the JSON stream and asserts that it is the
281 * Consumes the next token from the JSON stream and asserts that it is the
289 * Consumes the next token from the JSON stream and asserts that it is the
297 * Consumes the next token from the JSON stream and asserts that it is the
309 if (token != expected) {
320 return token !
[all...]
/frameworks/base/core/jni/
H A Dandroid_util_XmlBlock.cpp63 jlong token)
65 ResXMLTree* osb = reinterpret_cast<ResXMLTree*>(token);
75 jlong token)
77 ResXMLTree* osb = reinterpret_cast<ResXMLTree*>(token);
95 jlong token)
97 ResXMLParser* st = reinterpret_cast<ResXMLParser*>(token);
129 jlong token)
131 ResXMLParser* st = reinterpret_cast<ResXMLParser*>(token);
140 jlong token)
142 ResXMLParser* st = reinterpret_cast<ResXMLParser*>(token);
62 android_content_XmlBlock_nativeGetStringBlock(JNIEnv* env, jobject clazz, jlong token) argument
74 android_content_XmlBlock_nativeCreateParseState(JNIEnv* env, jobject clazz, jlong token) argument
94 android_content_XmlBlock_nativeNext(JNIEnv* env, jobject clazz, jlong token) argument
128 android_content_XmlBlock_nativeGetNamespace(JNIEnv* env, jobject clazz, jlong token) argument
139 android_content_XmlBlock_nativeGetName(JNIEnv* env, jobject clazz, jlong token) argument
150 android_content_XmlBlock_nativeGetText(JNIEnv* env, jobject clazz, jlong token) argument
161 android_content_XmlBlock_nativeGetLineNumber(JNIEnv* env, jobject clazz, jlong token) argument
173 android_content_XmlBlock_nativeGetAttributeCount(JNIEnv* env, jobject clazz, jlong token) argument
185 android_content_XmlBlock_nativeGetAttributeNamespace(JNIEnv* env, jobject clazz, jlong token, jint idx) argument
197 android_content_XmlBlock_nativeGetAttributeName(JNIEnv* env, jobject clazz, jlong token, jint idx) argument
209 android_content_XmlBlock_nativeGetAttributeResource(JNIEnv* env, jobject clazz, jlong token, jint idx) argument
221 android_content_XmlBlock_nativeGetAttributeDataType(JNIEnv* env, jobject clazz, jlong token, jint idx) argument
233 android_content_XmlBlock_nativeGetAttributeData(JNIEnv* env, jobject clazz, jlong token, jint idx) argument
245 android_content_XmlBlock_nativeGetAttributeStringValue(JNIEnv* env, jobject clazz, jlong token, jint idx) argument
257 android_content_XmlBlock_nativeGetAttributeIndex(JNIEnv* env, jobject clazz, jlong token, jstring ns, jstring name) argument
288 android_content_XmlBlock_nativeGetIdAttribute(JNIEnv* env, jobject clazz, jlong token) argument
301 android_content_XmlBlock_nativeGetClassAttribute(JNIEnv* env, jobject clazz, jlong token) argument
314 android_content_XmlBlock_nativeGetStyleAttribute(JNIEnv* env, jobject clazz, jlong token) argument
338 android_content_XmlBlock_nativeDestroyParseState(JNIEnv* env, jobject clazz, jlong token) argument
350 android_content_XmlBlock_nativeDestroy(JNIEnv* env, jobject clazz, jlong token) argument
[all...]
/frameworks/support/v7/appcompat/src/android/support/v7/internal/app/
H A DNotificationCompatImpl21.java30 Object token) {
35 if (token != null) {
36 style.setMediaSession((MediaSession.Token) token);
28 addMediaStyle(NotificationBuilderWithBuilderAccessor b, int[] actionsToShowInCompact, Object token) argument
/frameworks/base/core/java/android/app/backup/
H A DIRestoreSession.aidl47 * @param token The token from {@link getAvailableRestoreSets()} corresponding to
52 int restoreAll(long token, IRestoreObserver observer);
63 * @param token The token from {@link getAvailableRestoreSets()} corresponding to
68 * the contents of the actual back-end dataset named by {@code token}, only
71 int restoreSome(long token, IRestoreObserver observer, in String[] packages);
H A DRestoreSet.java48 public long token; field in class:RestoreSet
58 token = _token;
70 out.writeLong(token);
87 token = in.readLong();
/frameworks/base/core/java/android/service/voice/
H A DIVoiceInteractionSessionService.aidl27 void newSession(IBinder token, in Bundle args, int startFlags);
/frameworks/base/core/java/android/security/keymaster/
H A DOperationResult.java30 public final IBinder token; field in class:OperationResult
50 int resultCode, IBinder token, long operationHandle, int inputConsumed, byte[] output,
53 this.token = token;
62 token = in.readStrongBinder();
77 out.writeStrongBinder(token);
49 OperationResult( int resultCode, IBinder token, long operationHandle, int inputConsumed, byte[] output, KeymasterArguments outParams) argument
/frameworks/base/core/java/android/service/dreams/
H A DIDreamManager.aidl33 void finishSelf(in IBinder token, boolean immediate);
34 void startDozing(in IBinder token, int screenState, int screenBrightness);
35 void stopDozing(in IBinder token);
/frameworks/base/core/java/com/android/internal/app/
H A DIVoiceInteractionManagerService.aidl32 boolean deliverNewSession(IBinder token, IVoiceInteractionSession session,
34 boolean showSessionFromSession(IBinder token, in Bundle sessionArgs, int flags);
35 boolean hideSessionFromSession(IBinder token);
36 int startVoiceActivity(IBinder token, in Intent intent, String resolvedType);
37 void setKeepAwake(IBinder token, boolean keepAwake);
38 void closeSystemDialogs(IBinder token);
39 void finish(IBinder token);
102 * @param activityToken optional token of activity that needs to be on top

Completed in 923 milliseconds

1234567891011>>