Home
last modified time | relevance | path

Searched refs:qctx (Results 1 - 8 of 8) sorted by relevance

/third_party/curl/lib/vquic/
H A Dvquic.c87 CURLcode vquic_ctx_init(struct cf_quic_ctx *qctx) in vquic_ctx_init() argument
89 Curl_bufq_init2(&qctx->sendbuf, NW_CHUNK_SIZE, NW_SEND_CHUNKS, in vquic_ctx_init()
92 qctx->no_gso = FALSE; in vquic_ctx_init()
94 qctx->no_gso = TRUE; in vquic_ctx_init()
102 qctx->wblock_percent = (int)l; in vquic_ctx_init()
106 vquic_ctx_update_time(qctx); in vquic_ctx_init()
111 void vquic_ctx_free(struct cf_quic_ctx *qctx) in vquic_ctx_free() argument
113 Curl_bufq_free(&qctx->sendbuf); in vquic_ctx_free()
116 void vquic_ctx_update_time(struct cf_quic_ctx *qctx) in vquic_ctx_update_time() argument
118 qctx in vquic_ctx_update_time()
127 do_sendmsg(struct Curl_cfilter *cf, struct Curl_easy *data, struct cf_quic_ctx *qctx, const uint8_t *pkt, size_t pktlen, size_t gsolen, size_t *psent) do_sendmsg() argument
225 send_packet_no_gso(struct Curl_cfilter *cf, struct Curl_easy *data, struct cf_quic_ctx *qctx, const uint8_t *pkt, size_t pktlen, size_t gsolen, size_t *psent) send_packet_no_gso() argument
248 vquic_send_packets(struct Curl_cfilter *cf, struct Curl_easy *data, struct cf_quic_ctx *qctx, const uint8_t *pkt, size_t pktlen, size_t gsolen, size_t *psent) vquic_send_packets() argument
277 vquic_flush(struct Curl_cfilter *cf, struct Curl_easy *data, struct cf_quic_ctx *qctx) vquic_flush() argument
311 vquic_send(struct Curl_cfilter *cf, struct Curl_easy *data, struct cf_quic_ctx *qctx, size_t gsolen) vquic_send() argument
318 vquic_send_tail_split(struct Curl_cfilter *cf, struct Curl_easy *data, struct cf_quic_ctx *qctx, size_t gsolen, size_t tail_len, size_t tail_gsolen) vquic_send_tail_split() argument
333 recvmmsg_packets(struct Curl_cfilter *cf, struct Curl_easy *data, struct cf_quic_ctx *qctx, size_t max_pkts, vquic_recv_pkt_cb *recv_cb, void *userp) recvmmsg_packets() argument
409 recvmsg_packets(struct Curl_cfilter *cf, struct Curl_easy *data, struct cf_quic_ctx *qctx, size_t max_pkts, vquic_recv_pkt_cb *recv_cb, void *userp) recvmsg_packets() argument
475 recvfrom_packets(struct Curl_cfilter *cf, struct Curl_easy *data, struct cf_quic_ctx *qctx, size_t max_pkts, vquic_recv_pkt_cb *recv_cb, void *userp) recvfrom_packets() argument
535 vquic_recv_packets(struct Curl_cfilter *cf, struct Curl_easy *data, struct cf_quic_ctx *qctx, size_t max_pkts, vquic_recv_pkt_cb *recv_cb, void *userp) vquic_recv_packets() argument
[all...]
H A Dvquic_int.h56 CURLcode vquic_ctx_init(struct cf_quic_ctx *qctx);
57 void vquic_ctx_free(struct cf_quic_ctx *qctx);
59 void vquic_ctx_update_time(struct cf_quic_ctx *qctx);
62 struct cf_quic_ctx *qctx,
67 struct cf_quic_ctx *qctx);
70 struct cf_quic_ctx *qctx, size_t gsolen);
73 struct cf_quic_ctx *qctx, size_t gsolen,
77 struct cf_quic_ctx *qctx);
87 struct cf_quic_ctx *qctx,
/third_party/f2fs-tools/fsck/
H A Dmkquota.c70 quota_ctx_t qctx = fsck->qctx; in quota_write_inode() local
75 if ((!qctx) || (!sb->qf_ino[qtype])) in quota_write_inode()
84 dict = qctx->quota_dict[qtype]; in quota_write_inode()
178 fsck->qctx = ctx; in quota_init_context()
182 void quota_release_context(quota_ctx_t *qctx) in quota_release_context() argument
188 if (!qctx) in quota_release_context()
191 ctx = *qctx; in quota_release_context()
201 *qctx = NULL; in quota_release_context()
228 void quota_data_add(quota_ctx_t qctx, struc argument
250 quota_data_sub(quota_ctx_t qctx, struct f2fs_inode *inode, qsize_t space) quota_data_sub() argument
271 quota_data_inodes(quota_ctx_t qctx, struct f2fs_inode *inode, int adjust) quota_data_inodes() argument
291 quota_add_inode_usage(quota_ctx_t qctx, f2fs_ino_t ino, struct f2fs_inode* inode) quota_add_inode_usage() argument
367 quota_ctx_t qctx = fsck->qctx; quota_compare_and_update() local
[all...]
H A Dquotaio.c111 quota_ctx_t qctx = fsck->qctx; in quota_file_open() local
122 if (qctx->quota_file[qtype]) { in quota_file_open()
123 h = qctx->quota_file[qtype]; in quota_file_open()
158 qctx->quota_file[qtype] = h; in quota_file_open()
201 quota_ctx_t qctx = fsck->qctx; in quota_file_close() local
213 if (qctx->quota_file[h->qh_type] == h) in quota_file_close()
214 quota_free_mem(&qctx->quota_file[h->qh_type]); in quota_file_close()
H A Dquotaio.h219 void quota_data_inodes(quota_ctx_t qctx, struct f2fs_inode *inode, int adjust);
220 void quota_data_add(quota_ctx_t qctx, struct f2fs_inode *inode, qsize_t space);
221 void quota_data_sub(quota_ctx_t qctx, struct f2fs_inode *inode, qsize_t space);
223 void quota_add_inode_usage(quota_ctx_t qctx, f2fs_ino_t ino,
225 void quota_release_context(quota_ctx_t *qctx);
H A Dfsck.h126 struct quota_ctx *qctx; member
H A Dfsck.c572 quota_add_inode_usage(fsck->qctx, nid, &node_blk->i); in fsck_chk_node_blk()
2021 if (!fsck->qctx) in fsck_chk_quota_files()
2984 quota_add_inode_usage(fsck->qctx, nid, &node->i); in fsck_reconnect_file()
3394 if (fsck->qctx) in fsck_free()
3395 quota_release_context(&fsck->qctx); in fsck_free()
/third_party/ffmpeg/libavcodec/
H A Dqpeg.c40 static void qpeg_decode_intra(QpegContext *qctx, uint8_t *dst, in qpeg_decode_intra() argument
54 while ((bytestream2_get_bytes_left(&qctx->buffer) > 0) && (rows_to_go > 0)) { in qpeg_decode_intra()
55 code = bytestream2_get_byte(&qctx->buffer); in qpeg_decode_intra()
60 c0 = bytestream2_get_byte(&qctx->buffer); in qpeg_decode_intra()
61 c1 = bytestream2_get_byte(&qctx->buffer); in qpeg_decode_intra()
64 c0 = bytestream2_get_byte(&qctx->buffer); in qpeg_decode_intra()
69 c0 = bytestream2_get_byte(&qctx->buffer); in qpeg_decode_intra()
70 c1 = bytestream2_get_byte(&qctx->buffer); in qpeg_decode_intra()
73 c0 = bytestream2_get_byte(&qctx->buffer); in qpeg_decode_intra()
83 p = bytestream2_get_byte(&qctx in qpeg_decode_intra()
129 qpeg_decode_inter(QpegContext *qctx, uint8_t *dst, int stride, int width, int height, int delta, const uint8_t *ctable, uint8_t *refdata) qpeg_decode_inter() argument
[all...]

Completed in 8 milliseconds