Home
last modified time | relevance | path

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

/external/libchrome/libchrome_tools/patch/
Dhandle_table.patch72 - std::map<Dispatcher::Type, int> handle_count;
73 - handle_count[Dispatcher::Type::MESSAGE_PIPE];
74 - handle_count[Dispatcher::Type::DATA_PIPE_PRODUCER];
75 - handle_count[Dispatcher::Type::DATA_PIPE_CONSUMER];
76 - handle_count[Dispatcher::Type::SHARED_BUFFER];
77 - handle_count[Dispatcher::Type::WATCHER];
78 - handle_count[Dispatcher::Type::PLATFORM_HANDLE];
79 - handle_count[Dispatcher::Type::INVITATION];
85 - ++handle_count[entry.second.dispatcher->GetType()];
89 - for (const auto& entry : handle_count) {
[all …]
/external/perfetto/src/traced/probes/ftrace/test/data/android_hammerhead_MRA59G_3.4.0/events/jbd2/jbd2_run_stats/
Dformat17 field:__u32 handle_count; offset:40; size:4; signed:0;
21handle_count %u blocks %u blocks_logged %u", ((unsigned int) ((REC->dev) >> 20)), ((unsigned int) …
/external/perfetto/src/traced/probes/ftrace/test/data/android_flounder_lte_LRX16F_3.10.40/events/jbd2/jbd2_run_stats/
Dformat17 field:__u32 handle_count; offset:72; size:4; signed:0;
21handle_count %u blocks %u blocks_logged %u", ((unsigned int) ((REC->dev) >> 20)), ((unsigned int) …
/external/perfetto/src/traced/probes/ftrace/test/data/android_walleye_OPM5.171019.017.A1_4.4.88/events/jbd2/jbd2_run_stats/
Dformat17 field:__u32 handle_count; offset:72; size:4; signed:0;
21handle_count %u blocks %u blocks_logged %u", ((unsigned int) ((REC->dev) >> 20)), ((unsigned int) …
/external/perfetto/src/traced/probes/ftrace/test/data/android_seed_N2F62_3.10.49/events/jbd2/jbd2_run_stats/
Dformat17 field:__u32 handle_count; offset:40; size:4; signed:0;
21handle_count %u blocks %u blocks_logged %u", ((unsigned int) ((REC->dev) >> 20)), ((unsigned int) …
/external/protobuf/src/google/protobuf/compiler/
Dsubprocess.cc164 int handle_count = 0; in Communicate() local
167 handles[handle_count++] = child_stdin_; in Communicate()
170 handles[handle_count++] = child_stdout_; in Communicate()
174 WaitForMultipleObjects(handle_count, handles, FALSE, INFINITE); in Communicate()
178 wait_result < WAIT_OBJECT_0 + handle_count) { in Communicate()
/external/grpc-grpc/src/core/lib/iomgr/
Dev_epollex_linux.cc920 int handle_count = 1; local
923 handle_count =
925 if (handle_count == 0) {
926 handle_count = 1;
927 } else if (handle_count > MAX_EPOLL_EVENTS_HANDLED_EACH_POLL_CALL) {
928 handle_count = MAX_EPOLL_EVENTS_HANDLED_EACH_POLL_CALL;
931 for (int i = 0; (drain || i < handle_count) &&
/external/libdrm/
Dxf86drm.h876 extern int drmSyncobjReset(int fd, const uint32_t *handles, uint32_t handle_count);
877 extern int drmSyncobjSignal(int fd, const uint32_t *handles, uint32_t handle_count);
Dxf86drm.c4269 int drmSyncobjReset(int fd, const uint32_t *handles, uint32_t handle_count) in drmSyncobjReset() argument
4276 args.count_handles = handle_count; in drmSyncobjReset()
4282 int drmSyncobjSignal(int fd, const uint32_t *handles, uint32_t handle_count) in drmSyncobjSignal() argument
4289 args.count_handles = handle_count; in drmSyncobjSignal()
/external/python/cpython3/Lib/test/
Dtest_os.py2319 handle_count = ctypes.wintypes.DWORD()
2320 ok = kernel.GetProcessHandleCount(hproc, ctypes.byref(handle_count))
2323 before_count = handle_count.value
2343 ok = kernel.GetProcessHandleCount(hproc, ctypes.byref(handle_count))
2346 handle_delta = handle_count.value - before_count