HomeSort by relevance Sort by last modified time
    Searched defs:proc (Results 1 - 25 of 128) sorted by null

1 2 3 4 5 6

  /system/core/adb/
get_my_path_freebsd.c 28 char proc[64]; local
30 snprintf(proc, sizeof(proc), "/proc/%d/file", getpid());
32 int err = readlink(proc, exe, maxLen - 1);
get_my_path_linux.c 24 char proc[64]; local
25 snprintf(proc, sizeof proc, "/proc/%d/exe", getpid());
26 int err = readlink(proc, exe, maxLen - 1);
  /system/core/fastboot/
util_linux.c 39 char proc[64]; local
42 sprintf(proc, "/proc/%d/exe", getpid());
43 int err = readlink(proc, path, PATH_MAX - 1);
  /development/tools/emulator/opengl/system/egl/
egl_ftable.h 18 void *proc; member in struct:_egl_funcs_by_name
ClientAPIExts.cpp 79 // And now query the GLES library for each proc address
134 void* proc; member in struct:ClientAPIExts::_client_ext_funcs
151 return s_client_ext_funcs[i].proc;
  /development/tools/emulator/opengl/tests/EGL_host_wrapper/
egl_ftable.h 18 void *proc; member in struct:_egl_funcs_by_name
  /development/tools/emulator/opengl/tests/gles_android_wrapper/
egl_ftable.h 18 void *proc; member in struct:_egl_funcs_by_name
gles_ftable.h 18 void *proc; member in struct:_gles_funcs_by_name
  /external/webkit/Tools/DumpRenderTree/mac/PerlSupport/
DumpRenderTreeSupport.c 38 struct extern_proc proc = info.kp_proc; local
41 return proc.p_stat != SZOMB && (proc.p_flag & P_WEXIT) && proc.p_xstat;
  /frameworks/base/tools/preload/
PrintPsTree.java 40 for (Proc proc : root.processes.values()) {
41 if (proc.parent == null) {
42 proc.print();
  /frameworks/compile/libbcc/runtime/test/Unit/
trampoline_setup_test.c 31 nested_func_t proc; variable
43 proc = bar;
47 if ( (*proc)(3) != 43 )
50 if ( (*proc)(4) != 40 )
  /dalvik/tests/063-process-manager/src/
Main.java 18 Process proc = pb.start(); local
21 proc.waitFor();
  /development/tools/emulator/opengl/host/libs/Translator/EGL/
ClientAPIExts.cpp 81 // And now query the GLES library for each proc address
136 __translatorMustCastToProperFunctionPointerType proc; member in struct:ClientAPIExts::_client_ext_funcs
153 return s_client_ext_funcs[i].proc;
  /external/apache-harmony/support/src/test/java/tests/support/
Support_Exec.java 66 Process proc = (Process) arr[0]; local
68 InputStream in = proc.getInputStream();
80 proc.waitFor();
81 int exitCode = proc.exitValue();
82 proc.destroy();
117 Process proc = (Process) arr[0]; local
119 InputStream in = proc.getInputStream();
131 proc.waitFor();
135 proc.destroy();
230 final Process proc local
    [all...]
  /external/skia/src/opts/
opts_check_SSE2.cpp 84 SkBlitRow::Proc SkBlitRow::PlatformProcs4444(unsigned flags) {
88 SkBlitRow::Proc SkBlitRow::PlatformProcs565(unsigned flags) {
109 SkBlitMask::Proc SkBlitMask::PlatformProcs(SkBitmap::Config dstConfig,
113 SkBlitMask::Proc proc = NULL; local
120 proc = SkARGB32_BlitMask_SSE2;
126 return proc;
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/rpc/
pmap_rmt.h 49 u_long prog, vers, proc, arglen; member in struct:rmtcallargs
  /system/extras/libpagemap/
pm_kernel.c 39 ker->kpagecount_fd = open("/proc/kpagecount", O_RDONLY);
46 ker->kpageflags_fd = open("/proc/kpageflags", O_RDONLY);
63 DIR *proc; local
69 proc = opendir("/proc");
70 if (!proc)
75 closedir(proc);
80 while ((dir = readdir(proc))) {
89 closedir(proc);
101 closedir(proc);
    [all...]
  /external/oprofile/daemon/liblegacy/
opd_mapping.c 55 void opd_kill_maps(struct opd_proc * proc)
59 list_for_each_safe(pos, pos2, &proc->maps) {
68 void opd_add_mapping(struct opd_proc * proc, struct opd_image * image,
74 proc->tid, start, end, offset, image->name);
79 if (list_empty(&proc->maps)) {
80 if (proc->name)
81 free((char *)proc->name);
82 proc->name = xstrdup(image->name);
91 list_add_tail(&map->next, &proc->maps);
141 struct opd_proc * proc; local
    [all...]
  /ndk/sources/host-tools/nawk-20071023/
maketab.c 41 } proc[] = { variable in typeref:struct:xx
159 for (p=proc; p->token!=0; p++)
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
ProcessTest.java 37 Process proc = (Process) execArgs[0]; local
39 OutputStream os = proc.getOutputStream();
47 InputStream is = proc.getInputStream();
56 proc.waitFor();
58 proc.destroy();
76 Process proc = (Process) execArgs[0]; local
78 OutputStream os = proc.getOutputStream();
94 InputStream is = proc.getInputStream();
103 proc.waitFor();
105 proc.destroy()
    [all...]
  /libcore/luni/src/test/java/tests/api/java/lang/
ProcessTest.java 37 //Process proc = (Process) execArgs[0];
40 Process proc = Runtime.getRuntime().exec(commands, null, null); local
42 OutputStream os = proc.getOutputStream();
50 InputStream is = proc.getInputStream();
59 proc.waitFor();
61 proc.destroy();
76 Process proc = Runtime.getRuntime().exec(commands, null, null); local
77 OutputStream os = proc.getOutputStream();
89 InputStream is = proc.getInputStream();
98 proc.waitFor()
    [all...]
  /packages/apps/Email/emailcommon/src/org/apache/commons/io/
FileSystemUtils.java 398 Process proc = null; local
404 proc = openProcess(cmdAttribs);
405 in = proc.getInputStream();
406 out = proc.getOutputStream();
407 err = proc.getErrorStream();
416 proc.waitFor();
417 if (proc.exitValue() != 0) {
420 "Command line returned OS error code '" + proc.exitValue() +
440 if (proc != null) {
441 proc.destroy();
    [all...]
  /bionic/libc/kernel/arch-arm/asm/
procinfo.h 32 struct processor *proc; member in struct:proc_info_list
  /development/ndk/platforms/android-3/arch-arm/include/asm/
procinfo.h 32 struct processor *proc; member in struct:proc_info_list
  /external/chromium/base/debug/
trace_event.cc 96 base::ProcessHandle proc = base::GetCurrentProcessHandle(); local
98 process_metrics_.reset(base::ProcessMetrics::CreateProcessMetrics(proc));
102 process_metrics_.reset(base::ProcessMetrics::CreateProcessMetrics(proc,

Completed in 343 milliseconds

1 2 3 4 5 6