Home
last modified time | relevance | path

Searched refs:async_state (Results 1 – 8 of 8) sorted by relevance

/third_party/ffmpeg/libavfilter/
Dvf_dnn_classify.c213 DNNAsyncStatusType async_state; in dnn_classify_flush_frame() local
223 async_state = ff_dnn_get_result(&ctx->dnnctx, &in_frame, &out_frame); in dnn_classify_flush_frame()
224 if (async_state == DAST_SUCCESS) { in dnn_classify_flush_frame()
232 } while (async_state >= DAST_NOT_READY); in dnn_classify_flush_frame()
246 int async_state; in dnn_classify_activate() local
266 async_state = ff_dnn_get_result(&ctx->dnnctx, &in_frame, &out_frame); in dnn_classify_activate()
267 if (async_state == DAST_SUCCESS) { in dnn_classify_activate()
273 } while (async_state == DAST_SUCCESS); in dnn_classify_activate()
Dvf_derain.c61 DNNAsyncStatusType async_state = 0; in filter_frame() local
83 async_state = ff_dnn_get_result(&dr_context->dnnctx, &in, &out); in filter_frame()
84 } while (async_state == DAST_NOT_READY); in filter_frame()
86 if (async_state != DAST_SUCCESS) in filter_frame()
Dvf_dnn_detect.c356 DNNAsyncStatusType async_state; in dnn_detect_flush_frame() local
366 async_state = ff_dnn_get_result(&ctx->dnnctx, &in_frame, &out_frame); in dnn_detect_flush_frame()
367 if (async_state == DAST_SUCCESS) { in dnn_detect_flush_frame()
375 } while (async_state >= DAST_NOT_READY); in dnn_detect_flush_frame()
389 int async_state; in dnn_detect_activate() local
409 async_state = ff_dnn_get_result(&ctx->dnnctx, &in_frame, &out_frame); in dnn_detect_activate()
410 if (async_state == DAST_SUCCESS) { in dnn_detect_activate()
416 } while (async_state == DAST_SUCCESS); in dnn_detect_activate()
Dvf_dnn_processing.c247 DNNAsyncStatusType async_state; in flush_frame() local
257 async_state = ff_dnn_get_result(&ctx->dnnctx, &in_frame, &out_frame); in flush_frame()
269 } while (async_state >= DAST_NOT_READY); in flush_frame()
283 int async_state; in activate() local
309 async_state = ff_dnn_get_result(&ctx->dnnctx, &in_frame, &out_frame); in activate()
319 } while (async_state == DAST_SUCCESS); in activate()
Dvf_sr.c119 DNNAsyncStatusType async_state = 0; in filter_frame() local
150 async_state = ff_dnn_get_result(&ctx->dnnctx, &in, &out); in filter_frame()
151 } while (async_state == DAST_NOT_READY); in filter_frame()
153 if (async_state != DAST_SUCCESS) in filter_frame()
/third_party/libcoap/src/
Dcoap_async.c48 SEARCH_PAIR(session->context->async_state, s, in coap_register_async()
77 LL_PREPEND(session->context->async_state, s); in coap_register_async()
140 SEARCH_PAIR(session->context->async_state, tmp, in coap_find_async()
150 LL_DELETE(context->async_state,s); in coap_free_async_sub()
171 LL_FOREACH_SAFE(context->async_state, astate, tmp) { in coap_delete_all_async()
174 context->async_state = NULL; in coap_delete_all_async()
Dcoap_net.c3974 LL_FOREACH_SAFE(context->async_state, async, tmp) { in coap_check_async()
/third_party/libcoap/include/coap3/
Dcoap_net_internal.h66 coap_async_t *async_state; member