Home
last modified time | relevance | path

Searched refs:wctx (Results 1 – 10 of 10) sorted by relevance

/third_party/ffmpeg/fftools/
Dffprobe.c439 int (*init) (WriterContext *wctx);
440 void (*uninit)(WriterContext *wctx);
442 void (*print_section_header)(WriterContext *wctx);
443 void (*print_section_footer)(WriterContext *wctx);
444 void (*print_integer) (WriterContext *wctx, const char *, long long int);
445 void (*print_rational) (WriterContext *wctx, AVRational *q, char *sep);
446 void (*print_string) (WriterContext *wctx, const char *, const char *);
482 WriterContext *wctx = p; in writer_get_name() local
483 return wctx->writer->name; in writer_get_name()
517 static void writer_close(WriterContext **wctx) in writer_close() argument
[all …]
/third_party/ffmpeg/libavformat/
Dwtvenc.c138 WtvContext *wctx = s->priv_data; in write_chunk_header() local
141 wctx->last_chunk_pos = avio_tell(pb) - wctx->timeline_start_pos; in write_chunk_header()
145 avio_wl64(pb, wctx->serial); in write_chunk_header()
148 WtvChunkEntry *t = wctx->index + wctx->nb_index; in write_chunk_header()
149 av_assert0(wctx->nb_index < MAX_NB_INDEX); in write_chunk_header()
150 t->pos = wctx->last_chunk_pos; in write_chunk_header()
151 t->serial = wctx->serial; in write_chunk_header()
154 wctx->nb_index++; in write_chunk_header()
160 WtvContext *wctx = s->priv_data; in write_chunk_header2() local
163 int64_t last_chunk_pos = wctx->last_chunk_pos; in write_chunk_header2()
[all …]
/third_party/ejdb/src/jbr/
Djbr.c713 JBWCTX *wctx = websocket_udata_get(ws); in _jbr_ws_on_open() local
714 if (wctx) { in _jbr_ws_on_open()
715 wctx->ws = ws; in _jbr_ws_on_open()
720 JBWCTX *wctx = udata; in _jbr_ws_on_close() local
721 free(wctx); in _jbr_ws_on_close()
724 static void _jbr_ws_send_error(JBWCTX *wctx, const char *key, const char *error, const char *extra)… in _jbr_ws_send_error() argument
725 assert(wctx && key && error); in _jbr_ws_send_error()
740 _jbr_ws_write_text(wctx->ws, iwxstr_ptr(xstr), iwxstr_size(xstr)); in _jbr_ws_send_error()
745 static void _jbr_ws_send_rc(JBWCTX *wctx, const char *key, iwrc rc, const char *extra) { in _jbr_ws_send_rc() argument
748 _jbr_ws_send_error(wctx, key, error, extra); in _jbr_ws_send_rc()
[all …]
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/
Deapol_test.c583 struct wpa_sm_ctx *wctx; in test_eapol() local
618 wctx = os_zalloc(sizeof(*wctx)); in test_eapol()
619 if (wctx == NULL) { in test_eapol()
623 wctx->ctx = e; in test_eapol()
624 wctx->msg_ctx = wpa_s; in test_eapol()
625 wctx->get_state = eapol_test_get_state; in test_eapol()
626 wpa_s->wpa = wpa_sm_init(wctx); in test_eapol()
629 os_free(wctx); in test_eapol()
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/
Deapol_test.c583 struct wpa_sm_ctx *wctx; in test_eapol() local
618 wctx = os_zalloc(sizeof(*wctx)); in test_eapol()
619 if (wctx == NULL) { in test_eapol()
623 wctx->ctx = e; in test_eapol()
624 wctx->msg_ctx = wpa_s; in test_eapol()
625 wctx->get_state = eapol_test_get_state; in test_eapol()
626 wpa_s->wpa = wpa_sm_init(wctx); in test_eapol()
629 os_free(wctx); in test_eapol()
/third_party/skia/modules/androidkit/src/
DSurface.h48 WindowSurface(ANativeWindow* win, std::unique_ptr<sk_app::WindowContext> wctx);
DSurface.cpp24 WindowSurface::WindowSurface(ANativeWindow* win, std::unique_ptr<sk_app::WindowContext> wctx) in WindowSurface() argument
26 , fWindowContext(std::move(wctx)) in WindowSurface()
/third_party/openssl/crypto/async/
Dasync.c167 int ASYNC_start_job(ASYNC_JOB **job, ASYNC_WAIT_CTX *wctx, int *ret, in ASYNC_start_job() argument
240 ctx->currjob->waitctx = wctx; in ASYNC_start_job()
/third_party/openssl/crypto/evp/
De_aes.c3793 EVP_AES_WRAP_CTX *wctx = EVP_C_DATA(EVP_AES_WRAP_CTX,ctx); in aes_wrap_init_key() local
3799 &wctx->ks.ks); in aes_wrap_init_key()
3802 &wctx->ks.ks); in aes_wrap_init_key()
3804 wctx->iv = NULL; in aes_wrap_init_key()
3808 wctx->iv = EVP_CIPHER_CTX_iv_noconst(ctx); in aes_wrap_init_key()
3816 EVP_AES_WRAP_CTX *wctx = EVP_C_DATA(EVP_AES_WRAP_CTX,ctx); in aes_wrap_cipher() local
3854 rv = CRYPTO_128_wrap_pad(&wctx->ks.ks, wctx->iv, in aes_wrap_cipher()
3858 rv = CRYPTO_128_unwrap_pad(&wctx->ks.ks, wctx->iv, in aes_wrap_cipher()
3863 rv = CRYPTO_128_wrap(&wctx->ks.ks, wctx->iv, in aes_wrap_cipher()
3866 rv = CRYPTO_128_unwrap(&wctx->ks.ks, wctx->iv, in aes_wrap_cipher()
/third_party/openssl/apps/
Dcms.c843 EVP_CIPHER_CTX *wctx; in cms_main() local
844 wctx = CMS_RecipientInfo_kari_get0_ctx(ri); in cms_main()
845 EVP_EncryptInit_ex(wctx, wrap_cipher, NULL, NULL, NULL); in cms_main()