Home
last modified time | relevance | path

Searched refs:wst (Results 1 – 18 of 18) sorted by relevance

/third_party/node/deps/openssl/openssl/ssl/statem/
Dstatem_local.h81 WORK_STATE ossl_statem_client_pre_work(SSL *s, WORK_STATE wst);
82 WORK_STATE ossl_statem_client_post_work(SSL *s, WORK_STATE wst);
87 WORK_STATE ossl_statem_client_post_process_message(SSL *s, WORK_STATE wst);
94 WORK_STATE ossl_statem_server_pre_work(SSL *s, WORK_STATE wst);
95 WORK_STATE ossl_statem_server_post_work(SSL *s, WORK_STATE wst);
100 WORK_STATE ossl_statem_server_post_process_message(SSL *s, WORK_STATE wst);
122 __owur WORK_STATE tls_finish_handshake(SSL *s, WORK_STATE wst, int clearbufs,
135 __owur WORK_STATE tls_prepare_client_certificate(SSL *s, WORK_STATE wst);
144 __owur WORK_STATE tls_post_process_server_certificate(SSL *s, WORK_STATE wst);
155 __owur WORK_STATE tls_post_process_client_hello(SSL *s, WORK_STATE wst);
[all …]
Dstatem_srvr.c683 WORK_STATE ossl_statem_server_pre_work(SSL *s, WORK_STATE wst) in ossl_statem_server_pre_work() argument
736 return tls_finish_handshake(s, wst, 0, 0); in ossl_statem_server_pre_work()
780 return tls_finish_handshake(s, wst, 1, 1); in ossl_statem_server_pre_work()
810 WORK_STATE ossl_statem_server_post_work(SSL *s, WORK_STATE wst) in ossl_statem_server_post_work() argument
1236 WORK_STATE ossl_statem_server_post_process_message(SSL *s, WORK_STATE wst) in ossl_statem_server_post_process_message() argument
1247 return tls_post_process_client_hello(s, wst); in ossl_statem_server_post_process_message()
1250 return tls_post_process_client_key_exchange(s, wst); in ossl_statem_server_post_process_message()
2204 WORK_STATE tls_post_process_client_hello(SSL *s, WORK_STATE wst) in tls_post_process_client_hello() argument
2208 if (wst == WORK_MORE_A) { in tls_post_process_client_hello()
2216 wst = WORK_MORE_B; in tls_post_process_client_hello()
[all …]
Dstatem_clnt.c664 WORK_STATE ossl_statem_client_pre_work(SSL *s, WORK_STATE wst) in ossl_statem_client_pre_work() argument
714 return tls_finish_handshake(s, wst, 0, 1); in ossl_statem_client_pre_work()
718 return tls_finish_handshake(s, wst, 1, 1); in ossl_statem_client_pre_work()
728 WORK_STATE ossl_statem_client_post_work(SSL *s, WORK_STATE wst) in ossl_statem_client_post_work() argument
834 if (wst == WORK_MORE_A && SSL_IS_DTLS(s) && s->hit == 0) { in ossl_statem_client_post_work()
1082 WORK_STATE ossl_statem_client_post_process_message(SSL *s, WORK_STATE wst) in ossl_statem_client_post_process_message() argument
1093 return tls_post_process_server_certificate(s, wst); in ossl_statem_client_post_process_message()
1097 return tls_prepare_client_certificate(s, wst); in ossl_statem_client_post_process_message()
1868 WORK_STATE tls_post_process_server_certificate(SSL *s, WORK_STATE wst) in tls_post_process_server_certificate() argument
3431 WORK_STATE tls_prepare_client_certificate(SSL *s, WORK_STATE wst) in tls_prepare_client_certificate() argument
[all …]
Dstatem.c559 WORK_STATE(*post_process_message) (SSL *s, WORK_STATE wst); in read_state_machine()
783 WORK_STATE(*pre_work) (SSL *s, WORK_STATE wst); in write_state_machine()
784 WORK_STATE(*post_work) (SSL *s, WORK_STATE wst); in write_state_machine()
Dstatem_lib.c1077 WORK_STATE tls_finish_handshake(SSL *s, ossl_unused WORK_STATE wst, in tls_finish_handshake() argument
/third_party/openssl/ssl/statem/
Dstatem_local.h81 WORK_STATE ossl_statem_client_pre_work(SSL *s, WORK_STATE wst);
82 WORK_STATE ossl_statem_client_post_work(SSL *s, WORK_STATE wst);
87 WORK_STATE ossl_statem_client_post_process_message(SSL *s, WORK_STATE wst);
94 WORK_STATE ossl_statem_server_pre_work(SSL *s, WORK_STATE wst);
95 WORK_STATE ossl_statem_server_post_work(SSL *s, WORK_STATE wst);
100 WORK_STATE ossl_statem_server_post_process_message(SSL *s, WORK_STATE wst);
118 __owur WORK_STATE tls_finish_handshake(SSL *s, WORK_STATE wst, int clearbufs,
131 __owur WORK_STATE tls_prepare_client_certificate(SSL *s, WORK_STATE wst);
140 __owur WORK_STATE tls_post_process_server_certificate(SSL *s, WORK_STATE wst);
151 __owur WORK_STATE tls_post_process_client_hello(SSL *s, WORK_STATE wst);
[all …]
Dstatem_srvr.c682 WORK_STATE ossl_statem_server_pre_work(SSL *s, WORK_STATE wst) in ossl_statem_server_pre_work() argument
735 return tls_finish_handshake(s, wst, 0, 0); in ossl_statem_server_pre_work()
779 return tls_finish_handshake(s, wst, 1, 1); in ossl_statem_server_pre_work()
809 WORK_STATE ossl_statem_server_post_work(SSL *s, WORK_STATE wst) in ossl_statem_server_post_work() argument
1225 WORK_STATE ossl_statem_server_post_process_message(SSL *s, WORK_STATE wst) in ossl_statem_server_post_process_message() argument
1236 return tls_post_process_client_hello(s, wst); in ossl_statem_server_post_process_message()
1239 return tls_post_process_client_key_exchange(s, wst); in ossl_statem_server_post_process_message()
2184 WORK_STATE tls_post_process_client_hello(SSL *s, WORK_STATE wst) in tls_post_process_client_hello() argument
2188 if (wst == WORK_MORE_A) { in tls_post_process_client_hello()
2196 wst = WORK_MORE_B; in tls_post_process_client_hello()
[all …]
Dstatem_clnt.c664 WORK_STATE ossl_statem_client_pre_work(SSL *s, WORK_STATE wst) in ossl_statem_client_pre_work() argument
714 return tls_finish_handshake(s, wst, 0, 1); in ossl_statem_client_pre_work()
718 return tls_finish_handshake(s, wst, 1, 1); in ossl_statem_client_pre_work()
728 WORK_STATE ossl_statem_client_post_work(SSL *s, WORK_STATE wst) in ossl_statem_client_post_work() argument
834 if (wst == WORK_MORE_A && SSL_IS_DTLS(s) && s->hit == 0) { in ossl_statem_client_post_work()
1074 WORK_STATE ossl_statem_client_post_process_message(SSL *s, WORK_STATE wst) in ossl_statem_client_post_process_message() argument
1085 return tls_post_process_server_certificate(s, wst); in ossl_statem_client_post_process_message()
1089 return tls_prepare_client_certificate(s, wst); in ossl_statem_client_post_process_message()
1860 WORK_STATE tls_post_process_server_certificate(SSL *s, WORK_STATE wst) in tls_post_process_server_certificate() argument
3423 WORK_STATE tls_prepare_client_certificate(SSL *s, WORK_STATE wst) in tls_prepare_client_certificate() argument
[all …]
Dstatem.c554 WORK_STATE(*post_process_message) (SSL *s, WORK_STATE wst); in read_state_machine()
769 WORK_STATE(*pre_work) (SSL *s, WORK_STATE wst); in write_state_machine()
770 WORK_STATE(*post_work) (SSL *s, WORK_STATE wst); in write_state_machine()
Dstatem_lib.c1042 WORK_STATE tls_finish_handshake(SSL *s, ossl_unused WORK_STATE wst, in tls_finish_handshake() argument
/third_party/ffmpeg/libavformat/
Dwtvdec.c617 WtvStream *wst = av_mallocz(sizeof(WtvStream)); in new_stream() local
618 if (!wst) in new_stream()
622 av_free(wst); in new_stream()
626 st->priv_data = wst; in new_stream()
926 WtvStream *wst = s->streams[stream_index]->priv_data; in parse_chunks() local
927 wst->seen_data = 1; in parse_chunks()
/third_party/node/src/
Dnode_worker.cc897 Local<FunctionTemplate> wst = NewFunctionTemplate(isolate, nullptr); in InitWorker() local
899 wst->InstanceTemplate()->SetInternalFieldCount( in InitWorker()
901 wst->Inherit(AsyncWrap::GetConstructorTemplate(env)); in InitWorker()
905 wst->SetClassName(wst_string); in InitWorker()
906 env->set_worker_heap_snapshot_taker_template(wst->InstanceTemplate()); in InitWorker()
/third_party/skia/third_party/externals/icu/source/data/misc/
DkeyTypeData.txt436 wst{""}
/third_party/icu/icu4c/source/data/misc/
DkeyTypeData.txt439 wst{""}
/third_party/elfutils/po/
Dpl.po2478 "sekcja [%2d] „%s”: brak znacznika %s w DSO oznaczonym podczas wstępnej "
2485 "sekcja [%2d] „%s”: plik nie-DSO oznaczony jako zależność podczas wstępnej "
2492 "sekcja [%2d] „%s”: brak znacznika %s we wstępnie konsolidowanym pliku "
/third_party/cups-filters/cupsfilters/
Dimage.pgm86 …�����������������������������û������������������������������ylgimos{��|����wst��������{����|[\SU]…
/third_party/astc-encoder/Test/Images/HDRIHaven/HDR-RGB/
Dhdr-rgb-bellparkpier.hdr2190 …����������������~������{|����������������������z������|�������z�~�ytuڸ��wst���к����������������…
/third_party/openh264/res/
DCisco_Absolute_Power_1280x720_30fps.yuv2311 …������������������������~wuyzxspr|���������{vrolkiknqtwrstuvvtrtw~��������wst���}|���������������…
3097 …�������������������������zvvyzymr~���������xupjghikkmrvtrtvuusqpos}�������~wst���{{}��������������…