Searched refs:wret (Results 1 – 3 of 3) sorted by relevance
/external/linux-tools-perf/src/tools/perf/tests/ |
D | rdpmc.c | 154 int wret = 0; in test__rdpmc() local 168 wret = waitpid(pid, &status, 0); in test__rdpmc() 169 if (wret < 0 || status) in test__rdpmc()
|
/external/libvncserver/x11vnc/ |
D | sslhelper.c | 2954 pid_t wret; in ssl_helper_pid() local 2966 wret = waitpid(helpers[i], &status, WNOHANG); in ssl_helper_pid() 2969 if (db) fprintf(stderr, " waitret1=%d\n", wret); in ssl_helper_pid() 2971 if (kret == 0 && wret != helpers[i]) { in ssl_helper_pid() 2975 wret = waitpid(helpers[i], &status, WNOHANG); in ssl_helper_pid() 2976 if (db) fprintf(stderr, " waitret2=%d\n", wret); in ssl_helper_pid() 2977 if (wret == helpers[i]) { in ssl_helper_pid() 3002 pid_t wret; in ssl_helper_pid() local 3003 wret = waitpid(helpers[i], &status, WNOHANG); in ssl_helper_pid() 3006 if (db) fprintf(stderr, " waitret1=%d\n", wret); in ssl_helper_pid()
|
/external/libvncserver/x11vnc/misc/enhanced_tightvnc_viewer/src/patches/ |
D | tight-vncviewer-full.patch | 2898 XQueryBestCursor(dpy, dr, width, height, &wret, &hret); 2901 - if (width * height == 0 || wret < width || hret < height) { 2902 + if (width * height == 0 || (int) wret < width || (int) hret < height) {
|