HomeSort by relevance Sort by last modified time
    Searched defs:token (Results 501 - 525 of 2101) sorted by null

<<21222324252627282930>>

  /packages/services/Telecomm/src/com/android/server/telecom/callfiltering/
CallScreeningServiceFilter.java 84 long token = Binder.clearCallingIdentity(); local
101 Binder.restoreCallingIdentity(token);
113 long token = Binder.clearCallingIdentity(); local
132 Binder.restoreCallingIdentity(token);
  /prebuilts/ndk/r16/sources/third_party/shaderc/libshaderc_util/src/
compiler.cc 142 auto token = initializer->Acquire(); local
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/glslang/glslang/MachineIndependent/
Scan.cpp 289 // This is the function the glslang parser (i.e., bison) calls to get its next token
292 glslang::TParserToken token(*glslangTokenDesc);
294 return parseContext.getScanContext()->tokenize(parseContext.getPpContext(), token);
643 // Called by yylex to get the next token.
645 int TScanContext::tokenize(TPpContext* pp, TParserToken& token)
648 parserToken = &token;
650 int token = pp->tokenize(ppToken); local
651 if (token == EndOfInput)
657 switch (token) {
732 int token = tokenizeIdentifier() local
    [all...]
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/glslang/glslang/MachineIndependent/preprocessor/
PpScanner.cpp 241 // Return the right token type
364 // Single character token, including EndOfInput, '#' and '\' (escaped newlines are handled at a lower level, so this is just a '\' token)
397 // line continuation with no token before or after makes len == 0, and need to start over skipping white space, etc.
864 // loop again to get the next token...
915 int token = scanToken(&ppToken); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/
ExtractStringProposal.java 89 String token = ExtractStringInputPage.guessId(string); local
140 sb.append(token);
152 sb.append(token);
  /system/keymaster/ng/
AndroidKeymaster4Device.cpp 283 ::android::hardware::keymaster::V4_0::VerificationToken token; local
284 token.challenge = response.token.challenge;
285 token.timestamp = response.token.timestamp;
286 token.parametersVerified = kmParamSet2Hidl(response.token.parameters_verified);
287 token.securityLevel = legacy_enum_conversion(response.token.security_level);
288 token.mac = kmBlob2hidlVec(response.token.mac)
290 _hidl_cb(legacy_enum_conversion(response.error), token); local
    [all...]
  /toolchain/binutils/binutils-2.27/ld/
ldfile.c 202 int token, skip = 0; local
212 token = INPUT_SCRIPT;
213 while (token != 0)
215 switch (token)
218 if ((token = yylex ()) != '(')
220 if ((token = yylex ()) != NAME)
225 token = yylex ();
226 if (token == ',')
228 if ((token = yylex ()) != NAME)
234 if ((token = yylex ()) != ',
    [all...]
  /toolchain/binutils/binutils-2.27/opcodes/
z8kgen.c 589 char *token; member in struct:tok_struct
    [all...]
  /prebuilts/sdk/tools/jetifier/jetifier-standalone/lib/
commons-cli-1.3.1.jar 
  /prebuilts/tools/common/m2/repository/commons-cli/commons-cli/1.3.1/
commons-cli-1.3.1.jar 
  /frameworks/base/media/java/android/media/session/
MediaSessionManager.java 420 public boolean createSession2(@NonNull SessionToken2 token) {
421 if (token == null) {
425 return mService.createSession2(token.toBundle());
436 public void destroySession2(@NonNull SessionToken2 token) {
437 if (token == null) {
441 mService.destroySession2(token.toBundle());
574 * Stop receiving session token updates on the specified listener.
601 SessionToken2 token = SessionToken2.fromBundle(bundles.get(i)); local
602 if (token != null) {
603 tokens.add(token);
    [all...]
  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
SupplicantStaNetworkHalTest.java 698 * Tests the retrieval of WPS NFC token.
702 final ArrayList<Byte> token = new ArrayList<>(); local
703 token.add(Byte.valueOf((byte) 0x45));
704 token.add(Byte.valueOf((byte) 0x34));
709 cb.onValues(mStatusSuccess, token);
    [all...]
  /packages/apps/Email/provider_src/com/android/email/provider/
ContentCache.java 54 * 1. Get a CacheToken: CacheToken token = cache.getToken(id);
56 * 3. Put the cursor in the cache: cache.putCursor(cursor, id, token);
177 * A list of tokens that are in use at any moment; there can be more than one token for an id
193 for (CacheToken token: this) {
194 if (token.getId().equals(id)) {
195 token.invalidate();
196 removeList.add(token);
200 for (CacheToken token: removeList) {
201 remove(token);
210 for (CacheToken token: this)
229 CacheToken token = new CacheToken(id); local
447 CacheToken token = mTokenList.add(id); local
    [all...]
  /bionic/libc/kernel/uapi/linux/
auto_dev-ioctl.h 37 __u32 token; member in struct:args_ready
40 __u32 token; member in struct:args_fail
  /build/soong/python/
python_test.go 46 "srcs: the path %q contains invalid token %q."
  /external/ImageMagick/MagickCore/
color.c 69 #include "MagickCore/token.h"
2003 *token; local
    [all...]
delegate.c 73 #include "MagickCore/token.h"
74 #include "MagickCore/token-private.h"
1998 *token; local
    [all...]
locale.c 60 #include "MagickCore/token.h"
1158 *token; local
    [all...]
threshold.c 87 #include "MagickCore/token.h"
1295 token[MagickPathExtent]; local
    [all...]
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3baserecognizer.c 229 // Free up any token factory we created (error recovery for instance)
246 * Creates a new Mismatched Token Exception and inserts in the recognizer
260 /* Now update it to indicate this is a Mismatched token exception
347 ex->token = cts->tstream->_LT (cts->tstream, 1); /* Current input token */
348 ex->line = ((pANTLR3_COMMON_TOKEN)(ex->token))->getLine (ex->token);
349 ex->charPositionInLine = ((pANTLR3_COMMON_TOKEN)(ex->token))->getCharPositionInLine (ex->token);
351 if (((pANTLR3_COMMON_TOKEN)(ex->token))->type == ANTLR3_TOKEN_EOF
2170 pANTLR3_COMMON_TOKEN token; local
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x500/style/
IETFUtils.java 136 String token = nTok.nextToken(); local
138 if (token.indexOf('+') > 0)
140 X500NameTokenizer pTok = new X500NameTokenizer(token, '+');
189 X500NameTokenizer vTok = new X500NameTokenizer(token, '=');
  /external/clang/lib/CodeGen/
CGDeclCXX.cpp 555 llvm::Value *token = EmitObjCAutoreleasePoolPush(); local
556 EmitObjCAutoreleasePoolCleanup(token);
  /external/clang/test/CodeGenCXX/
predefined-expr.cpp 549 typedef void (^notify_handler_t)(int token); variable
559 _dispatch_once(^{ notify_register_dispatch( ^(int token) { XXLog(__FUNCTION__); });
566 _dispatch_once(^{ notify_register_dispatch( ^(int token) { XXLog(__FUNCTION__); });
  /external/curl/lib/vauth/
digest.c 218 char *token; local
230 token = strtok_r(tmp, ",", &tok_buf);
231 while(token != NULL) {
232 if(strcasecompare(token, DIGEST_QOP_VALUE_STRING_AUTH))
234 else if(strcasecompare(token, DIGEST_QOP_VALUE_STRING_AUTH_INT))
236 else if(strcasecompare(token, DIGEST_QOP_VALUE_STRING_AUTH_CONF))
239 token = strtok_r(NULL, ",", &tok_buf);
527 char *token = NULL; local
579 token = strtok_r(tmp, ",", &tok_buf);
580 while(token != NULL)
    [all...]
  /external/deqp/external/openglcts/modules/glesext/draw_elements_base_vertex/
esextcDrawElementsBaseVertexTests.cpp 1376 std::string token = *token_value_pairs[2 * n_token_value_pair + 0]; local
    [all...]

Completed in 1388 milliseconds

<<21222324252627282930>>