Home
last modified time | relevance | path

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

/art/perfetto_hprof/
Dperfetto_hprof.cc89 int g_signal_pipe_fds[2]; variable
682 if (pipe2(g_signal_pipe_fds, O_CLOEXEC) == -1) { in ArtPlugin_Initialize()
690 if (write(g_signal_pipe_fds[1], kByte, sizeof(kByte)) == -1) { in ArtPlugin_Initialize()
698 close(g_signal_pipe_fds[0]); in ArtPlugin_Initialize()
699 close(g_signal_pipe_fds[1]); in ArtPlugin_Initialize()
737 res = read(g_signal_pipe_fds[0], buf, sizeof(buf)); in ArtPlugin_Initialize()
744 close(g_signal_pipe_fds[0]); in ArtPlugin_Initialize()
763 close(g_signal_pipe_fds[1]); in ArtPlugin_Deinitialize()