Home
last modified time | relevance | path

Searched refs:token (Results 301 - 325 of 1021) sorted by relevance

1...<<11121314151617181920>>...41

/test/testfwk/arkxtest/uitest/server/
H A Dserver_main.cpp61 "start-daemon <token> start the test process\n"
206 static int32_t StartDaemon(string_view token, int32_t argc, char *argv[]) in StartDaemon() argument
208 if (token.empty()) { in StartDaemon()
209 LOG_E("Empty transaction token"); in StartDaemon()
212 auto transalatedToken = TranslateToken(token); in StartDaemon()
224 if (token == singlenessToken) { in StartDaemon()
316 string_view token = argc < 3 ? "" : argv[2]; in main()
317 _Exit(StartDaemon(token, argc - THREE, argv + THREE)); in main()
/third_party/node/deps/ngtcp2/ngtcp2/crypto/includes/ngtcp2/
H A Dngtcp2_crypto.h580 * stateless reset token using HKDF extraction using the given |cid|
581 * and static key |secret| as input. The token will be written to
582 * the buffer pointed by |token| and it must have a capacity of at
588 uint8_t *token, const uint8_t *secret, size_t secretlen,
595 * data added to a token generated by
605 * Retry token generated by `ngtcp2_crypto_generate_retry_token`.
613 * token generated by `ngtcp2_crypto_generate_regular_token`.
621 * a token generated by `ngtcp2_crypto_generate_retry_token`.
632 * of a token generated by `ngtcp2_crypto_generate_regular_token`.
641 * `ngtcp2_crypto_generate_retry_token` generates a token i
[all...]
/third_party/protobuf/csharp/src/Google.Protobuf/
H A DJsonTokenizer.cs47 /// between values. It validates the token stream as it goes - so callers can assume that the
50 /// <para>Implementation details: the base class handles single token push-back and </para>
82 // TODO: Why do we allow a different token to be pushed back? It might be better to always remember the previous
83 // token returned, and allow a parameterless Rewind() method (which could only be called once, just like the current PushBack).
84 internal void PushBack(JsonToken token) in PushBack() argument
90 bufferedToken = token; in PushBack()
91 if (token.Type == JsonToken.TokenType.StartObject) in PushBack()
95 else if (token.Type == JsonToken.TokenType.EndObject) in PushBack()
102 /// Returns the next JSON token in the stream. An EndDocument token i
[all...]
/third_party/skia/third_party/externals/angle2/src/compiler/translator/
H A DValidateLimitations.cpp81 void error(TSourceLoc loc, const char *reason, const char *token);
82 void error(TSourceLoc loc, const char *reason, const ImmutableString &token);
159 void ValidateLimitationsTraverser::error(TSourceLoc loc, const char *reason, const char *token) in error() argument
161 mDiagnostics->error(loc, reason, token); in error()
166 const ImmutableString &token) in error()
168 error(loc, reason, token.data()); in error()
164 error(TSourceLoc loc, const char *reason, const ImmutableString &token) error() argument
/third_party/rust/crates/rust-cexpr/tests/
H A Dclang.rs19 use cexpr::token::Token;
179 CXToken_Comment => cexpr::token::Kind::Comment, in token_clang_to_cexpr()
180 CXToken_Identifier => cexpr::token::Kind::Identifier, in token_clang_to_cexpr()
181 CXToken_Keyword => cexpr::token::Kind::Keyword, in token_clang_to_cexpr()
182 CXToken_Literal => cexpr::token::Kind::Literal, in token_clang_to_cexpr()
183 CXToken_Punctuation => cexpr::token::Kind::Punctuation, in token_clang_to_cexpr()
184 _ => panic!("invalid token kind: {:?}", *orig), in token_clang_to_cexpr()
/device/soc/hisilicon/hi3861v100/sdk_liteos/third_party/libcoap/include/coap2/
H A Dresource.h39 coap_binary_t * /* token */,
373 * identified by the given @p token. This function returns the registered
379 * @param token The token that identifies this subscription.
389 const coap_binary_t *token,
399 * @param token The token that identifies this subscription or @c NULL for
400 * any token.
405 const coap_binary_t *token);
412 * @param token Th
[all...]
/third_party/mesa3d/src/compiler/glsl/glcpp/
H A Dglcpp.h60 typedef struct token token_t;
69 token_t *token; member
105 struct token { struct
113 token_t *token; member
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/packaging/
H A D_tokenizer.py89 """Context-sensitive token parsing.
91 Provides methods to examine the input stream to check whether the next token
109 """Move beyond provided token name, if at current position."""
114 """Check whether the next token has the provided name.
116 By default, if the check succeeds, the token *must* be read before
117 another check. If `peek` is set to `True`, the token is not loaded and
123 assert name in self.rules, f"Unknown token name: {name!r}"
135 """Expect a certain token name next, failing with a syntax error otherwise.
137 The token is *not* read.
144 """Consume the next token an
[all...]
/third_party/rust/crates/cxx/gen/build/src/syntax/
H A Dfile.rs6 braced, token, Abi, Attribute, ForeignItem, Ident, Item as RustItem, ItemEnum, ItemImpl,
18 pub brace_token: token::Brace,
35 pub brace_token: token::Brace,
89 && ahead.peek(token::Brace) in parse()
/third_party/rust/crates/cxx/gen/lib/src/syntax/
H A Dfile.rs6 braced, token, Abi, Attribute, ForeignItem, Ident, Item as RustItem, ItemEnum, ItemImpl,
18 pub brace_token: token::Brace,
35 pub brace_token: token::Brace,
89 && ahead.peek(token::Brace) in parse()
/third_party/rust/crates/cxx/macro/src/syntax/
H A Dfile.rs6 braced, token, Abi, Attribute, ForeignItem, Ident, Item as RustItem, ItemEnum, ItemImpl,
18 pub brace_token: token::Brace,
35 pub brace_token: token::Brace,
89 && ahead.peek(token::Brace) in parse()
/third_party/rust/crates/cxx/syntax/
H A Dfile.rs6 braced, token, Abi, Attribute, ForeignItem, Ident, Item as RustItem, ItemEnum, ItemImpl,
18 pub brace_token: token::Brace,
35 pub brace_token: token::Brace,
89 && ahead.peek(token::Brace) in parse()
/third_party/rust/crates/cxx/gen/cmd/src/syntax/
H A Dfile.rs6 braced, token, Abi, Attribute, ForeignItem, Ident, Item as RustItem, ItemEnum, ItemImpl,
18 pub brace_token: token::Brace,
35 pub brace_token: token::Brace,
89 && ahead.peek(token::Brace) in parse()
/third_party/python/Tools/peg_generator/pegen/
H A Dtestutil.py7 import token namespace
19 ALL_TOKENS = token.tok_name
20 EXACT_TOKENS = token.EXACT_TOKEN_TYPES
22 name for index, name in token.tok_name.items() if index not in EXACT_TOKENS.values()
/third_party/pulseaudio/src/modules/raop/
H A Draop-util.c70 static unsigned int token_decode(const char *token) { in token_decode() argument
75 if (strlen(token) < 4) in token_decode()
79 if (token[i] == '=') in token_decode()
84 int lpos = char_position(token[i]); in token_decode()
/third_party/node/deps/ngtcp2/ngtcp2/crypto/
H A Dshared.c816 int ngtcp2_crypto_generate_stateless_reset_token(uint8_t *token, in ngtcp2_crypto_generate_stateless_reset_token() argument
823 if (ngtcp2_crypto_hkdf(token, NGTCP2_STATELESS_RESET_TOKENLEN, in ngtcp2_crypto_generate_stateless_reset_token()
897 uint8_t *token, const uint8_t *secret, size_t secretlen, uint32_t version, in ngtcp2_crypto_generate_retry_token()
950 p = token; in ngtcp2_crypto_generate_retry_token()
970 return p - token; in ngtcp2_crypto_generate_retry_token()
974 ngtcp2_cid *odcid, const uint8_t *token, size_t tokenlen, in ngtcp2_crypto_verify_retry_token()
998 token[0] != NGTCP2_CRYPTO_TOKEN_MAGIC_RETRY) { in ngtcp2_crypto_verify_retry_token()
1002 rand_data = token + tokenlen - NGTCP2_CRYPTO_TOKEN_RAND_DATALEN; in ngtcp2_crypto_verify_retry_token()
1003 ciphertext = token + 1; in ngtcp2_crypto_verify_retry_token()
1080 uint8_t *token, cons in ngtcp2_crypto_generate_regular_token()
896 ngtcp2_crypto_generate_retry_token( uint8_t *token, const uint8_t *secret, size_t secretlen, uint32_t version, const ngtcp2_sockaddr *remote_addr, ngtcp2_socklen remote_addrlen, const ngtcp2_cid *retry_scid, const ngtcp2_cid *odcid, ngtcp2_tstamp ts) ngtcp2_crypto_generate_retry_token() argument
973 ngtcp2_crypto_verify_retry_token( ngtcp2_cid *odcid, const uint8_t *token, size_t tokenlen, const uint8_t *secret, size_t secretlen, uint32_t version, const ngtcp2_sockaddr *remote_addr, ngtcp2_socklen remote_addrlen, const ngtcp2_cid *dcid, ngtcp2_duration timeout, ngtcp2_tstamp ts) ngtcp2_crypto_verify_retry_token() argument
1079 ngtcp2_crypto_generate_regular_token( uint8_t *token, const uint8_t *secret, size_t secretlen, const ngtcp2_sockaddr *remote_addr, ngtcp2_socklen remote_addrlen, ngtcp2_tstamp ts) ngtcp2_crypto_generate_regular_token() argument
1150 ngtcp2_crypto_verify_regular_token(const uint8_t *token, size_t tokenlen, const uint8_t *secret, size_t secretlen, const ngtcp2_sockaddr *remote_addr, ngtcp2_socklen remote_addrlen, ngtcp2_duration timeout, ngtcp2_tstamp ts) ngtcp2_crypto_verify_regular_token() argument
1275 ngtcp2_crypto_write_retry(uint8_t *dest, size_t destlen, uint32_t version, const ngtcp2_cid *dcid, const ngtcp2_cid *scid, const ngtcp2_cid *odcid, const uint8_t *token, size_t tokenlen) ngtcp2_crypto_write_retry() argument
[all...]
/third_party/libcoap/src/oscore/
H A Doscore_context.c677 coap_delete_bin_const(association->token); in oscore_free_association()
688 coap_bin_const_t *token, in oscore_new_association()
709 token->length, token->s, NULL); in oscore_new_association()
716 association->token = coap_new_bin_const(token->s, token->length); in oscore_new_association()
717 if (association->token == NULL) in oscore_new_association()
748 oscore_find_association(coap_session_t *session, coap_bin_const_t *token) { in oscore_find_association() argument
751 OSCORE_ASSOCIATIONS_FIND(session->associations, token, associatio in oscore_find_association()
686 oscore_new_association(coap_session_t *session, coap_pdu_t *sent_pdu, coap_bin_const_t *token, oscore_recipient_ctx_t *recipient_ctx, coap_bin_const_t *aad, coap_bin_const_t *nonce, coap_bin_const_t *partial_iv, int is_observe) oscore_new_association() argument
[all...]
/third_party/mesa3d/src/gallium/drivers/svga/
H A Dsvga_state_rss.c48 #define EMIT_RS(svga, value, token) \
50 STATIC_ASSERT(SVGA3D_RS_##token < ARRAY_SIZE(svga->state.hw_draw.rs)); \
51 if (svga->state.hw_draw.rs[SVGA3D_RS_##token] != value) { \
52 svga_queue_rs(&queue, SVGA3D_RS_##token, value); \
53 svga->state.hw_draw.rs[SVGA3D_RS_##token] = value; \
57 #define EMIT_RS_FLOAT(svga, fvalue, token) \
60 STATIC_ASSERT(SVGA3D_RS_##token < ARRAY_SIZE(svga->state.hw_draw.rs)); \
61 if (svga->state.hw_draw.rs[SVGA3D_RS_##token] != value) { \
62 svga_queue_rs(&queue, SVGA3D_RS_##token, value); \
63 svga->state.hw_draw.rs[SVGA3D_RS_##token]
[all...]
/third_party/nghttp2/doc/_exts/rubydomain/
H A Drubydomain.py171 for token in rb_paramlist_re.split(arglist):
172 if token == '[':
176 elif token == ']':
181 elif not token or token == ',' or token.isspace():
184 token = token.strip()
185 stack[-1] += addnodes.desc_parameter(token, token)
[all...]
/third_party/protobuf/src/google/protobuf/io/
H A Dtokenizer_unittest.cc194 // In each test case, the entire input text should parse as a single token
255 // Before Next() is called, the initial token should always be TYPE_START. in TEST_2D()
262 // Parse the token. in TEST_2D()
278 // After Next() returns false, the token should have type TYPE_END. in TEST_2D()
325 // last token in "output" must have type TYPE_END.
346 // Test all token types at the same time.
438 // Before Next() is called, the initial token should always be TYPE_START. in TEST_2D()
447 Tokenizer::Token token; in TEST_2D() local
449 token = kMultiTokenCases_case.output[i++]; in TEST_2D()
451 SCOPED_TRACE(testing::Message() << "Token #" << i << ": " << token in TEST_2D()
[all...]
/third_party/python/Lib/lib2to3/tests/
H A Dtest_util.py10 from lib2to3.pgen2 import token namespace
91 [Leaf(token.NUMBER, 1), Leaf(token.NUMBER, 2),
92 Leaf(token.NUMBER, 3)],
93 [Leaf(token.NUMBER, 1), Leaf(token.NUMBER, 3),
94 Leaf(token.NUMBER, 2), Leaf(token.NUMBER, 4)],
95 [Leaf(token.STRING, "b"), Leaf(token
[all...]
/third_party/libunwind/libunwind/src/arm/
H A DGreg_states_iterate.c32 unw_reg_states_callback cb, void *token) in unw_reg_states_iterate()
36 return dwarf_reg_states_iterate (&c->dwarf, cb, token); in unw_reg_states_iterate()
31 unw_reg_states_iterate(unw_cursor_t *cursor, unw_reg_states_callback cb, void *token) unw_reg_states_iterate() argument
/third_party/libunwind/libunwind/src/tilegx/
H A DGreg_states_iterate.c32 unw_reg_states_callback cb, void *token) in unw_reg_states_iterate()
36 return dwarf_reg_states_iterate (&c->dwarf, cb, token); in unw_reg_states_iterate()
31 unw_reg_states_iterate(unw_cursor_t *cursor, unw_reg_states_callback cb, void *token) unw_reg_states_iterate() argument
/third_party/libunwind/libunwind/src/ppc32/
H A DGreg_states_iterate.c32 unw_reg_states_callback cb, void *token) in unw_reg_states_iterate()
36 return dwarf_reg_states_iterate (&c->dwarf, cb, token); in unw_reg_states_iterate()
31 unw_reg_states_iterate(unw_cursor_t *cursor, unw_reg_states_callback cb, void *token) unw_reg_states_iterate() argument
/third_party/libunwind/libunwind/src/x86/
H A DGreg_states_iterate.c32 unw_reg_states_callback cb, void *token) in unw_reg_states_iterate()
36 return dwarf_reg_states_iterate (&c->dwarf, cb, token); in unw_reg_states_iterate()
31 unw_reg_states_iterate(unw_cursor_t *cursor, unw_reg_states_callback cb, void *token) unw_reg_states_iterate() argument

Completed in 14 milliseconds

1...<<11121314151617181920>>...41