Home
last modified time | relevance | path

Searched refs:handle_count (Results 1 – 11 of 11) sorted by relevance

/third_party/jerryscript/tests/unit-ext/
Dtest-ext-handle-scope-handle-prelist-escape.c27 static const size_t handle_count = JERRYX_HANDLE_PRELIST_SIZE + 1; variable
48 for (size_t idx = 0; idx < handle_count; idx ++) in create_object()
72 TEST_ASSERT (native_free_cb_call_count == (handle_count -1)); in test_handle_scope_val()
86 TEST_ASSERT (native_free_cb_call_count == handle_count); in main()
Dtest-ext-handle-scope-handle-prelist.c27 static const size_t handle_count = JERRYX_HANDLE_PRELIST_SIZE * 2; variable
48 for (size_t idx = 0; idx < handle_count; idx ++) in create_object()
72 TEST_ASSERT (native_free_cb_call_count == (handle_count -1)); in test_handle_scope_val()
86 TEST_ASSERT (native_free_cb_call_count == handle_count); in main()
/third_party/protobuf/src/google/protobuf/compiler/
Dsubprocess.cc177 int handle_count = 0; in Communicate() local
180 handles[handle_count++] = child_stdin_; in Communicate()
183 handles[handle_count++] = child_stdout_; in Communicate()
187 WaitForMultipleObjects(handle_count, handles, FALSE, INFINITE); in Communicate()
191 wait_result < WAIT_OBJECT_0 + handle_count) { in Communicate()
/third_party/mesa3d/src/gallium/drivers/crocus/
Dcrocus_fence.c349 unsigned int handle_count = 0; in crocus_fence_finish() local
357 handles[handle_count++] = fine->syncobj->handle; in crocus_fence_finish()
360 if (handle_count == 0) in crocus_fence_finish()
365 .count_handles = handle_count, in crocus_fence_finish()
/third_party/mesa3d/src/gallium/drivers/iris/
Diris_fence.c417 unsigned int handle_count = 0; in iris_fence_finish() local
425 handles[handle_count++] = fine->syncobj->handle; in iris_fence_finish()
428 if (handle_count == 0) in iris_fence_finish()
433 .count_handles = handle_count, in iris_fence_finish()
Diris_bufmgr.c466 int handle_count = 0; in iris_bo_wait_syncobj() local
473 handles[handle_count++] = r->handle; in iris_bo_wait_syncobj()
475 handles[handle_count++] = w->handle; in iris_bo_wait_syncobj()
479 if (handle_count == 0) in iris_bo_wait_syncobj()
490 .count_handles = handle_count, in iris_bo_wait_syncobj()
/third_party/libdrm/
Dxf86drm.h934 extern int drmSyncobjReset(int fd, const uint32_t *handles, uint32_t handle_count);
935 extern int drmSyncobjSignal(int fd, const uint32_t *handles, uint32_t handle_count);
937 uint64_t *points, uint32_t handle_count);
943 uint32_t handle_count);
945 uint32_t handle_count, uint32_t flags);
Dxf86drm.c4928 uint32_t handle_count) in drmSyncobjReset() argument
4935 args.count_handles = handle_count; in drmSyncobjReset()
4942 uint32_t handle_count) in drmSyncobjSignal() argument
4949 args.count_handles = handle_count; in drmSyncobjSignal()
4956 uint64_t *points, uint32_t handle_count) in drmSyncobjTimelineSignal() argument
4964 args.count_handles = handle_count; in drmSyncobjTimelineSignal()
4996 uint32_t handle_count) in drmSyncobjQuery() argument
5004 args.count_handles = handle_count; in drmSyncobjQuery()
5013 uint32_t handle_count, uint32_t flags) in drmSyncobjQuery2() argument
5020 args.count_handles = handle_count; in drmSyncobjQuery2()
/third_party/mesa3d/src/gallium/drivers/asahi/
Dagx_pipe.c523 unsigned handle_count = in agx_flush() local
528 uint32_t *handles = calloc(sizeof(uint32_t), handle_count); in agx_flush()
542 assert(handle_i == handle_count); in agx_flush()
563 demo_mem_map(dev->memmap.ptr.cpu, dev->memmap.size, handles, handle_count, in agx_flush()
/third_party/python/Lib/test/
Dtest_os.py2832 handle_count = ctypes.wintypes.DWORD()
2833 ok = kernel.GetProcessHandleCount(hproc, ctypes.byref(handle_count))
2836 before_count = handle_count.value
2858 ok = kernel.GetProcessHandleCount(hproc, ctypes.byref(handle_count))
2861 handle_delta = handle_count.value - before_count
/third_party/libbpf/.github/actions/build-selftests/
Dvmlinux.h49493 __u32 handle_count; member