Home
last modified time | relevance | path

Searched refs:new_token (Results 1 – 9 of 9) sorted by relevance

/third_party/mesa3d/src/compiler/glsl/glcpp/
Dglcpp-parse.y1138 token_t *new_token = linear_alloc_child(parser->linalloc, sizeof(token_t)); in _token_list_copy() local
1139 *new_token = *node->token; in _token_list_copy()
1140 _token_list_append (parser, copy, new_token); in _token_list_copy()
1914 token_t *new_token; in _glcpp_parser_expand_function() local
1916 new_token = _token_create_ival(parser, PLACEHOLDER, in _glcpp_parser_expand_function()
1918 _token_list_append(parser, substituted, new_token); in _glcpp_parser_expand_function()
/third_party/libcoap/src/
Dcoap_block.c2081 coap_bin_const_t *new_token; in coap_block_new_lg_crcv() local
2084 new_token = track_fetch_observe(pdu, lg_crcv, 0, &pdu->actual_token); in coap_block_new_lg_crcv()
2085 if (new_token) in coap_block_new_lg_crcv()
2086 coap_update_token(pdu, new_token->length, new_token->s); in coap_block_new_lg_crcv()
3107 coap_bin_const_t *new_token; in coap_handle_response_send_block() local
3111 new_token = track_fetch_observe(&p->pdu, lg_crcv, block.num + 1, in coap_handle_response_send_block()
3113 if (new_token) { in coap_handle_response_send_block()
3115 len = new_token->length; in coap_handle_response_send_block()
3116 memcpy(buf, new_token->s, len); in coap_handle_response_send_block()
/third_party/libcoap/tests/
Dtest_pdu.c1371 uint8_t new_token[] = { 't', 'o', 'k', 'e', 'n' }; in t_encode_pdu23() local
1401 coap_update_token(pdu, sizeof(new_token), new_token); in t_encode_pdu23()
/third_party/node/deps/ngtcp2/ngtcp2/lib/
Dngtcp2_pkt.h362 ngtcp2_new_token new_token; member
Dngtcp2_qlog.c795 fr->new_token.token.len * 2 + 1) { in ngtcp2_qlog_write_frame()
798 p = write_new_token_frame(p, &fr->new_token); in ngtcp2_qlog_write_frame()
Dngtcp2_rtb.c131 ngtcp2_vec_init(&fr->new_token.token, p, token->len); in ngtcp2_frame_chain_new_token_objalloc_new()
182 if (frc->fr.new_token.token.len > in ngtcp2_frame_chain_objalloc_del()
546 &nfrc, &fr->new_token.token, rtb->frc_objalloc, rtb->mem); in rtb_reclaim_frame()
Dngtcp2_log.c525 log_fr_new_token(log, hd, &fr->new_token, dir); in log_fr()
Dngtcp2_pkt.c534 return ngtcp2_pkt_decode_new_token_frame(&dest->new_token, payload, in ngtcp2_pkt_decode_frame()
1556 return ngtcp2_pkt_encode_new_token_frame(out, outlen, &fr->new_token); in ngtcp2_pkt_encode_frame()
Dngtcp2_conn.c9197 rv = conn_recv_new_token(conn, &fr->new_token); in conn_recv_pkt()