Searched refs:token (Results 26 - 50 of 332) sorted by relevance

1234567891011>>

/frameworks/base/core/java/android/service/voice/
H A DIVoiceInteractionSessionService.aidl27 void newSession(IBinder token, in Bundle args, int startFlags);
/frameworks/support/transition/ics/android/support/transition/
H A DWindowIdPort.java28 * wrap a window token and use it as an identifier.</p>
34 private WindowIdPort(IBinder token) { argument
35 mToken = token;
/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/services/core/java/com/android/server/tv/
H A DTvRemoteProviderProxy.java240 public void inputBridgeConnected(IBinder token) { argument
242 if (DEBUG) Slog.d(TAG, this + ": inputBridgeConnected token: " + token);
244 mActiveConnection.onInputBridgeConnected(token);
251 void openInputBridge(TvRemoteProviderProxy provider, IBinder token, String name, argument
254 void closeInputBridge(TvRemoteProviderProxy provider, IBinder token); argument
256 void clearInputBridge(TvRemoteProviderProxy provider, IBinder token); argument
258 void sendTimeStamp(TvRemoteProviderProxy provider, IBinder token, long timestamp); argument
260 void sendKeyDown(TvRemoteProviderProxy provider, IBinder token, int keyCode); argument
262 void sendKeyUp(TvRemoteProviderProxy provider, IBinder token, in argument
264 sendPointerDown(TvRemoteProviderProxy provider, IBinder token, int pointerId, int x, int y) argument
267 sendPointerUp(TvRemoteProviderProxy provider, IBinder token, int pointerId) argument
269 sendPointerSync(TvRemoteProviderProxy provider, IBinder token) argument
306 onInputBridgeConnected(IBinder token) argument
325 openInputBridge(final IBinder token, final String name, final int width, final int height, final int maxPointers) argument
352 closeInputBridge(final IBinder token) argument
377 clearInputBridge(final IBinder token) argument
402 sendTimestamp(final IBinder token, final long timestamp) argument
424 sendKeyDown(final IBinder token, final int keyCode) argument
450 sendKeyUp(final IBinder token, final int keyCode) argument
475 sendPointerDown(final IBinder token, final int pointerId, final int x, final int y) argument
501 sendPointerUp(final IBinder token, final int pointerId) argument
527 sendPointerSync(final IBinder token) argument
574 openInputBridge(IBinder token, String name, int width, int height, int maxPointers) argument
583 closeInputBridge(IBinder token) argument
591 clearInputBridge(IBinder token) argument
599 sendTimestamp(IBinder token, long timestamp) argument
607 sendKeyDown(IBinder token, int keyCode) argument
615 sendKeyUp(IBinder token, int keyCode) argument
623 sendPointerDown(IBinder token, int pointerId, int x, int y) argument
632 sendPointerUp(IBinder token, int pointerId) argument
640 sendPointerSync(IBinder token) argument
[all...]
/frameworks/base/core/java/com/android/internal/view/
H A DIInputMethodManager.aidl68 void setInputMethod(in IBinder token, String id);
69 void setInputMethodAndSubtype(in IBinder token, String id, in InputMethodSubtype subtype);
70 void hideMySoftInput(in IBinder token, int flags);
71 void showMySoftInput(in IBinder token, int flags);
72 void updateStatusIcon(in IBinder token, String packageName, int iconId);
73 void setImeWindowStatus(in IBinder token, int vis, int backDisposition);
78 boolean switchToLastInputMethod(in IBinder token);
79 boolean switchToNextInputMethod(in IBinder token, boolean onlyCurrentIme);
80 boolean shouldOfferSwitchingToNextInputMethod(in IBinder token);
84 void clearLastInputMethodWindowForTransition(in IBinder token);
[all...]
/frameworks/base/core/java/com/android/internal/app/
H A DIVoiceInteractionManagerService.aidl33 boolean deliverNewSession(IBinder token, IVoiceInteractionSession session,
35 boolean showSessionFromSession(IBinder token, in Bundle sessionArgs, int flags);
36 boolean hideSessionFromSession(IBinder token);
37 int startVoiceActivity(IBinder token, in Intent intent, String resolvedType);
38 void setKeepAwake(IBinder token, boolean keepAwake);
39 void closeSystemDialogs(IBinder token);
40 void finish(IBinder token);
103 * @param activityToken optional token of activity that needs to be on top
/frameworks/base/core/java/android/content/
H A DAsyncQueryHandler.java72 int token = msg.what;
109 // passing the original token value back to the caller
111 Message reply = args.handler.obtainMessage(token);
146 * @param token A token passed into {@link #onQueryComplete} to identify
164 public void startQuery(int token, Object cookie, Uri uri, argument
167 // Use the token as what so cancelOperations works properly
168 Message msg = mWorkerThreadHandler.obtainMessage(token);
190 * @param token The token representin
193 cancelOperation(int token) argument
207 startInsert(int token, Object cookie, Uri uri, ContentValues initialValues) argument
233 startUpdate(int token, Object cookie, Uri uri, ContentValues values, String selection, String[] selectionArgs) argument
261 startDelete(int token, Object cookie, Uri uri, String selection, String[] selectionArgs) argument
286 onQueryComplete(int token, Object cookie, Cursor cursor) argument
299 onInsertComplete(int token, Object cookie, Uri uri) argument
312 onUpdateComplete(int token, Object cookie, int result) argument
325 onDeleteComplete(int token, Object cookie, int result) argument
[all...]
/frameworks/compile/mclinker/lib/Script/
H A DScriptParser.yy82 %token END 0 /* EOF */
83 %token <string> STRING LNAMESPEC
84 %token <integer> INTEGER
87 %token LINKER_SCRIPT DEFSYM VERSION_SCRIPT DYNAMIC_LIST
90 %token ENTRY
92 %token INCLUDE
93 %token INPUT
94 %token GROUP
95 %token AS_NEEDED
96 %token OUTPU
[all...]
H A DGroupCmd.cpp87 InputToken* token = llvm::cast<InputToken>(*it); local
88 if (token->asNeeded())
93 switch (token->type()) {
100 (token->name().size() > 0 && token->name()[0] == '/')) {
102 path.append(token->name());
105 path.assign(token->name());
109 script.directories().find(token->name(), Input::Script);
130 path = script.directories().find(token->name(), Input::Archive);
134 path = script.directories().find(token
[all...]
/frameworks/base/core/java/android/view/inputmethod/
H A DExtractedTextRequest.java31 public int token; field in class:ExtractedTextRequest
57 dest.writeInt(token);
70 res.token = source.readInt();
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DRemoteInputController.java51 * @param token a token identifying the view that is managing the remote input
53 public void addRemoteInput(NotificationData.Entry entry, Object token) { argument
55 Preconditions.checkNotNull(token);
58 entry /* contains */, null /* remove */, token /* removeToken */);
60 mOpen.add(new Pair<>(new WeakReference<>(entry), token));
70 * @param token a token identifying the view that is requesting the removal. If non-null,
71 * the entry is only removed if the token matches the last added token fo
74 removeRemoteInput(NotificationData.Entry entry, Object token) argument
88 addSpinning(String key, Object token) argument
103 removeSpinning(String key, Object token) argument
[all...]
/frameworks/base/core/java/android/service/trust/
H A DITrustAgentServiceCallback.aidl30 void onConfigureCompleted(boolean result, IBinder token);
/frameworks/base/core/java/com/android/internal/alsa/
H A DAlsaDevicesParser.java92 String token = line.substring(tokenOffset, delimOffset);
101 mCardNum = Integer.parseInt(token);
103 tokenIndex++; // no device # in the token stream
108 mDeviceNum = Integer.parseInt(token);
112 if (token.equals("digital")) {
114 } else if (token.equals("control")) {
116 } else if (token.equals("raw")) {
122 if (token.equals("audio")) {
124 } else if (token.equals("midi")) {
131 if (token
[all...]
/frameworks/base/services/core/java/com/android/server/accounts/
H A DTokenCache.java39 public final String token; field in class:TokenCache.Value
42 public Value(String token, long expiryEpochMillis) { argument
43 this.token = token;
104 * Map associated tokens with an Evictor that will manage evicting the token from the
105 * cache. This reverse lookup is needed because very little information is given at token
117 return v.token.length();
122 // When a token has been removed, clean up the associated Evictor.
128 Evictor evictor = mTokenEvictors.remove(oldVal.token);
136 // Prepare for removal by token strin
156 evict(String accountType, String token) argument
188 put( Account account, String token, String tokenType, String packageName, byte[] sigDigest, long expiryMillis) argument
208 remove(String accountType, String token) argument
[all...]
/frameworks/base/core/java/android/view/
H A DWindowManagerInternal.java108 * @param openToken the token for the opening app
109 * @param closeToken the token for the closing app
119 * @param token the token for app whose transition has finished
121 public void onAppTransitionFinishedLocked(IBinder token) {} argument
167 * Gets the magnification and translation applied to a window given its token.
172 * @param windowToken The window's token.
198 * Gets the token of the window that has input focus.
200 * @return The token.
210 * Gets the frame of a window given its token
215 getWindowFrame(IBinder token, Rect outBounds) argument
234 addWindowToken(android.os.IBinder token, int type) argument
242 removeWindowToken(android.os.IBinder token, boolean removeWindows) argument
[all...]
H A DIWindowManager.aidl83 void pauseKeyDispatching(IBinder token);
84 void resumeKeyDispatching(IBinder token);
86 void addWindowToken(IBinder token, int type);
87 void removeWindowToken(IBinder token);
89 * Adds an application token to the specified task Id.
90 * @param addPos The position to add the token to in the task.
91 * @param token The token to add.
92 * @param taskId The Id of the task we are adding the token to.
96 * @param fullscreen True if the application token i
[all...]
H A DWindowId.java52 WindowId token;
54 token = mRegistrations.get(inputToken);
57 mHandler.sendMessage(mHandler.obtainMessage(1, token));
59 onFocusGained(token);
65 WindowId token;
67 token = mRegistrations.get(inputToken);
70 mHandler.sendMessage(mHandler.obtainMessage(2, token));
72 onFocusLost(token);
109 public abstract void onFocusGained(WindowId token); argument
114 public abstract void onFocusLost(WindowId token); argument
[all...]
/frameworks/base/core/java/com/android/internal/backup/
H A DIObbBackupService.aidl37 int token, in IBackupManager callbackBinder);
44 int token, in IBackupManager callbackBinder);
/frameworks/base/core/java/com/google/android/util/
H A DSmileyParser.java67 Token token = tokens.get(i);
69 builder.append(token.getRawText());
70 if (token.getType() == AbstractMessageParser.Token.Type.SMILEY) {
71 int resid = mRes.getSmileyRes(token.getRawText());
/frameworks/base/packages/StatementService/src/com/android/statementservice/retriever/
H A DJsonParser.java55 JsonToken token = reader.peek();
56 if (token.equals(JsonToken.BEGIN_ARRAY)) {
58 } else if (token.equals(JsonToken.STRING)) {
60 } else if (token.equals(JsonToken.BEGIN_OBJECT)) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/media/
H A DRingtonePlayer.java82 public Client(IBinder token, Uri uri, UserHandle user, AudioAttributes aa) { argument
83 mToken = token;
92 if (LOGD) Log.d(TAG, "binderDied() token=" + mToken);
102 public void play(IBinder token, Uri uri, AudioAttributes aa, float volume, boolean looping)
105 Log.d(TAG, "play(token=" + token + ", uri=" + uri + ", uid="
110 client = mClients.get(token);
113 client = new Client(token, uri, user, aa);
114 token.linkToDeath(client, 0);
115 mClients.put(token, clien
[all...]
/frameworks/base/core/java/com/android/internal/util/
H A DTypedProperties.java153 int token;
155 // Read the next token, which is either the type or EOF.
156 token = st.nextToken();
157 if (token == StreamTokenizer.TT_EOF) {
160 if (token != StreamTokenizer.TT_WORD) {
171 token = st.nextToken();
172 if (token != '(') {
178 token = st.nextToken();
179 if (token != StreamTokenizer.TT_WORD) {
190 token
[all...]
/frameworks/base/media/java/android/media/midi/
H A DMidiDevice.java131 IBinder token = new Binder();
132 ParcelFileDescriptor pfd = mDeviceServer.openInputPort(token, portNumber);
136 return new MidiInputPort(mDeviceServer, token, pfd, portNumber);
157 IBinder token = new Binder();
158 ParcelFileDescriptor pfd = mDeviceServer.openOutputPort(token, portNumber);
162 return new MidiOutputPort(mDeviceServer, token, pfd, portNumber);
194 IBinder token = new Binder();
195 int calleePid = mDeviceServer.connectPorts(token, pfd, outputPortNumber);
205 return new MidiConnection(token, inputPort);
/frameworks/volley/src/main/java/com/android/volley/toolbox/
H A DHttpHeaderParser.java67 String token = tokens[i].trim();
68 if (token.equals("no-cache") || token.equals("no-store")) {
70 } else if (token.startsWith("max-age=")) {
72 maxAge = Long.parseLong(token.substring(8));
75 } else if (token.startsWith("stale-while-revalidate=")) {
77 staleWhileRevalidate = Long.parseLong(token.substring(23));
80 } else if (token.equals("must-revalidate") || token.equals("proxy-revalidate")) {

Completed in 6179 milliseconds

1234567891011>>