Home
last modified time | relevance | path

Searched refs:token (Results 1326 - 1350 of 1948) sorted by relevance

1...<<51525354555657585960>>...78

/third_party/node/deps/v8/third_party/inspector_protocol/crdtp/
H A Dcbor.h208 // Identifies the current token that we're looking at,
210 // or DONE (if we're past the last token).
213 // Advances to the next token.
226 // The following methods retrieve the token values. They can only
248 // then see the envelope token first (looking at it a second time,
261 void SetToken(CBORTokenTag token, size_t token_byte_length);
/third_party/nghttp2/src/
H A Dshrpx_quic_connection_handler.h122 const ngtcp2_cid *odcid, const uint8_t *token,
H A Dnghttp.cc336 Headers::value_type *Request::get_res_header(int32_t token) { in get_res_header() argument
337 auto idx = res_hdidx[token]; in get_res_header()
344 Headers::value_type *Request::get_req_header(int32_t token) { in get_req_header() argument
345 auto idx = req_hdidx[token]; in get_req_header()
1933 auto token = http2::lookup_token(name, namelen); in on_header_callback() local
1935 http2::index_header(req->res_hdidx, token, req->res_nva.size()); in on_header_callback()
1937 flags & NGHTTP2_NV_FLAG_NO_INDEX, token); in on_header_callback()
1957 auto token = http2::lookup_token(name, namelen); in on_header_callback() local
1959 http2::index_header(req->req_hdidx, token, req->req_nva.size()); in on_header_callback()
1961 flags & NGHTTP2_NV_FLAG_NO_INDEX, token); in on_header_callback()
[all...]
/third_party/node/deps/npm/node_modules/npm-registry-fetch/lib/
H A Dcheck-response.js20 if (auth && auth.scopeAuthKey && !auth.token && !auth.auth) {
/third_party/ltp/tools/sparse/sparse-src/
H A Dallocate.c40 #include "token.h"
141 ALLOCATOR(token, "tokens");
H A Dallocate.h82 DECLARE_ALLOCATOR(token); variable
/third_party/lwip/src/include/lwip/
H A Ddef.h145 char* lwip_strnstr(const char* buffer, const char* token, size_t n);
/third_party/libcoap/include/coap3/
H A Dcoap_block.h431 * @param token The original token used to initiate the observation.
438 int coap_cancel_observe(coap_session_t *session, coap_binary_t *token,
/third_party/vk-gl-cts/external/openglcts/modules/gl/
H A Dgl3cGPUShader5Tests.hpp86 static void replaceToken(const glw::GLchar* token, size_t& search_position, const glw::GLchar* text,
H A Dgl3cCullDistanceTests.cpp842 /* Iterate over all token and replace them with stage-specific values */ in iterate()
845 const glw::GLchar* token; in iterate() member
863 token_value_pairs[1].token = input_fs_token_string; in iterate()
871 token_value_pairs[1].token = input_gs_token_string; in iterate()
879 token_value_pairs[1].token = input_tc_token_string; in iterate()
887 token_value_pairs[1].token = input_te_token_string; in iterate()
901 if (current_pair.token == NULL || current_pair.value == NULL) in iterate()
906 while ((token_position = current_body.body_ptr->find(current_pair.token)) != std::string::npos) in iterate()
908 current_body.body_ptr->replace(token_position, strlen(current_pair.token), current_pair.value); in iterate()
910 } /* for (all token in iterate()
[all...]
/third_party/skia/third_party/externals/icu/source/i18n/unicode/
H A Dplurrule.h576 int32_t getNumberValue(const UnicodeString& token) const;
/third_party/skia/modules/svg/include/
H A DSkSVGAttributeParser.h84 bool matchStringToken(const char* token, const char** newPos = nullptr) const;
/third_party/skia/third_party/externals/angle2/src/common/
H A Dstring_utils.h85 // Check if the given token string contains the given token.
88 bool ContainsToken(const std::string &tokenStr, char delimiter, const std::string &token);
/third_party/ffmpeg/libavcodec/
H A Dlibvpxenc.c456 char *token = av_strtok(value, ",", &saveptr); in vp8_ts_parse_int_array() local
458 while (token && dest_idx < max_entries) { in vp8_ts_parse_int_array()
459 dest[dest_idx++] = strtoul(token, NULL, 10); in vp8_ts_parse_int_array()
460 token = av_strtok(NULL, ",", &saveptr); in vp8_ts_parse_int_array()
469 char *token = av_strtok(value, ",", &saveptr); in vp8_ts_parse_int64_array() local
471 while (token && dest_idx < max_entries) { in vp8_ts_parse_int64_array()
472 dest[dest_idx++] = strtoull(token, NULL, 10); in vp8_ts_parse_int64_array()
473 token = av_strtok(NULL, ",", &saveptr); in vp8_ts_parse_int64_array()
/third_party/glslang/glslang/MachineIndependent/
H A DShaderLang.cpp72 // token to print ", but none of that seems appropriate for this file.
525 infoSink.info.message(EPrefixError, "#version: versions before 150 do not allow a profile token"); in DeduceVersionProfile()
1005 // recently read token. If we switched to a new source string, returns
1045 // lastSource is the source string index (starting from 0) of the last token
1050 // lastLine is the line number (starting from 1) of the last token processed.
1051 // It is tracked in order for newlines to be inserted when a token appears
1143 int lastToken = EndOfInput; // lastToken records the last token processed.
1146 int token = ppContext.tokenize(ppToken);
1147 if (token == EndOfInput)
1166 if (token
[all...]
/third_party/alsa-utils/topology/nhlt/intel/ssp/
H A Dssp-process.c891 char *buf, *token = NULL; in ssp_set_params() local
929 token = strtok(buf, delim); in ssp_set_params()
931 while (token) { in ssp_set_params()
932 if (!strcmp(token, "lbm_mode")) in ssp_set_params()
934 else if (!strcmp(token, "bt_sideband")) in ssp_set_params()
936 else if (!strcmp(token, "render_feedback")) { in ssp_set_params()
940 fprintf(stderr, "ssp_set_params(): unknown quirk %s\n", token); in ssp_set_params()
945 token = strtok(NULL, delim); in ssp_set_params()
/third_party/vk-gl-cts/external/openglcts/modules/glesext/tessellation_shader/
H A DesextcTessellationShaderTessellation.cpp429 /* Replace PRIMITIVE_MODE token with actual primitive_mode */ in getTECode()
927 const std::string token = "N_PATCH_VERTICES"; in getTCCode() local
930 while ((token_index = result.find(token)) != std::string::npos) in getTCCode()
932 result = result.replace(token_index, token.length(), n_patch_vertices_string.c_str()); in getTCCode()
934 token_index = result.find(token); in getTCCode()
983 const std::string token = "PRIMITIVE_MODE"; in getTECode() local
986 while ((token_index = result.find(token)) != std::string::npos) in getTECode()
988 result = result.replace(token_index, token.length(), primitive_mode_string.c_str()); in getTECode()
990 token_index = result.find(token); in getTECode()
/third_party/backends/backend/
H A Dumax_pp.c424 SANE_Char *token; in umax_pp_configure_attach() local
427 /* check for mandatory 'port' token */ in umax_pp_configure_attach()
428 lp = sanei_config_get_string (devname, &token); in umax_pp_configure_attach()
429 if (strncmp (token, "port", 4) != 0) in umax_pp_configure_attach()
432 free (token); in umax_pp_configure_attach()
435 free (token); in umax_pp_configure_attach()
438 lp = sanei_config_get_string (lp, &token); in umax_pp_configure_attach()
441 if (strncmp (token, "safe-auto", 9) == 0) in umax_pp_configure_attach()
445 else if (strncmp (token, "auto", 4) == 0) in umax_pp_configure_attach()
451 status = umax_pp_attach (config, token); in umax_pp_configure_attach()
[all...]
/third_party/mesa3d/src/gallium/auxiliary/util/
H A Du_threaded_context.c200 assert(!batch->token); in tc_batch_execute()
270 if (next->token) { in tc_batch_flush()
271 next->token->tc = NULL; in tc_batch_flush()
272 tc_unflushed_batch_token_reference(&next->token, NULL); in tc_batch_flush()
353 if (next->token) { in _tc_sync()
354 next->token->tc = NULL; in _tc_sync()
355 tc_unflushed_batch_token_reference(&next->token, NULL); in _tc_sync()
390 struct tc_unflushed_batch_token *token, in threaded_context_flush()
396 if (token->tc && token in threaded_context_flush()
389 threaded_context_flush(struct pipe_context *_pipe, struct tc_unflushed_batch_token *token, bool prefer_async) threaded_context_flush() argument
[all...]
/kernel/linux/linux-5.10/drivers/net/wimax/i2400m/
H A Dfw.c315 char *options = NULL, *options_orig, *token; in i2400m_barker_db_init() local
335 while ((token = strsep(&options, ",")) != NULL) { in i2400m_barker_db_init()
336 if (*token == '\0') /* eat joint commas */ in i2400m_barker_db_init()
338 if (sscanf(token, "%x", &barker) != 1 in i2400m_barker_db_init()
343 __func__, token); in i2400m_barker_db_init()
/kernel/linux/linux-5.10/samples/bpf/
H A Dxdpsock_user.c309 char *token; in get_irqs() local
312 token = strtok(line, com); in get_irqs()
313 while (token != NULL) { in get_irqs()
315 total_intrs += atoi(token); in get_irqs()
316 token = strtok(NULL, com); in get_irqs()
/kernel/linux/linux-5.10/net/9p/
H A Dtrans_fd.c779 int token; in parse_opts() local
783 token = match_token(p, tokens, args); in parse_opts()
784 if ((token != Opt_err) && (token != Opt_privport)) { in parse_opts()
792 switch (token) { in parse_opts()
/kernel/linux/linux-6.6/drivers/net/wireless/mediatek/mt76/mt7915/
H A Dmmio.c608 int token; in mt7915_mmio_wed_init_rx_buf() local
624 token = mt76_rx_token_consume(&dev->mt76, buf, t, addr); in mt7915_mmio_wed_init_rx_buf()
625 if (token < 0) { in mt7915_mmio_wed_init_rx_buf()
630 desc->token |= cpu_to_le32(FIELD_PREP(MT_DMA_CTL_TOKEN, in mt7915_mmio_wed_init_rx_buf()
631 token)); in mt7915_mmio_wed_init_rx_buf()
/kernel/linux/linux-6.6/drivers/gpu/drm/
H A Ddrm_mipi_dbi.c1337 char *buf, *pos, *token; in mipi_dbi_debugfs_command_write() local
1358 token = strsep(&pos, " "); in mipi_dbi_debugfs_command_write()
1359 if (!token) { in mipi_dbi_debugfs_command_write()
1364 ret = kstrtou8(token, 16, &val); in mipi_dbi_debugfs_command_write()
1368 if (token == buf) in mipi_dbi_debugfs_command_write()
/kernel/linux/linux-6.6/tools/testing/selftests/mm/
H A Dkhugepaged.c1391 const char *token; in parse_test_type() local
1402 token = strsep(&buf, ":"); in parse_test_type()
1404 if (!strcmp(token, "all")) { in parse_test_type()
1407 } else if (!strcmp(token, "khugepaged")) { in parse_test_type()
1409 } else if (!strcmp(token, "madvise")) { in parse_test_type()

Completed in 35 milliseconds

1...<<51525354555657585960>>...78