HomeSort by relevance Sort by last modified time
    Searched refs:process (Results 1 - 25 of 2601) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/libvncserver/compat/msvc/
unistd.h 3 #include <process.h>
  /ndk/tests/device/test-gnustl-full/unit/
cstdlib_header_test.cpp 12 # include <process.h>
  /ndk/tests/device/test-stlport/unit/
cstdlib_header_test.cpp 12 # include <process.h>
  /external/deqp/framework/delibs/deutil/
deProcess.h 23 * \brief Process abstraction.
31 /* Process types. */
35 void deProcess_destroy (deProcess* process);
37 deBool deProcess_start (deProcess* process, const char* commandLine, const char* workingDirectory);
38 deBool deProcess_isRunning (deProcess* process);
39 deBool deProcess_waitForFinish (deProcess* process);
41 const char* deProcess_getLastError (const deProcess* process);
42 int deProcess_getExitCode (const deProcess* process);
45 deBool deProcess_terminate (deProcess* process);
46 deBool deProcess_kill (deProcess* process);
    [all...]
deProcess.c 21 * \brief Process abstraction.
66 printf("Process launch failed: %s\n", message);
138 deProcess* process = (deProcess*)deCalloc(sizeof(deProcess)); local
139 if (!process)
142 process->state = PROCESSSTATE_NOT_STARTED;
144 return process;
147 static void deProcess_cleanupHandles (deProcess* process)
149 if (process->standardIn)
150 deFile_destroy(process->standardIn);
152 if (process->standardOut
570 deProcess* process = (deProcess*)deCalloc(sizeof(deProcess)); local
    [all...]
  /external/libchrome/base/process/
process_handle_posix.cc 5 #include "base/process/process_handle.h"
19 ProcessId GetProcId(ProcessHandle process) {
20 return process;
process_handle_linux.cc 5 #include "base/process/process_handle.h"
8 #include "base/process/internal_linux.h"
12 ProcessId GetParentProcessId(ProcessHandle process) {
14 internal::ReadProcStatsAndGetFieldAsInt64(process, internal::VM_PPID);
20 FilePath GetProcessExecutablePath(ProcessHandle process) {
21 FilePath stat_file = internal::GetProcPidDir(process).Append("exe");
24 // No such process. Happens frequently in e.g. TerminateAllChromeProcesses
port_provider_mac.h 13 #include "base/process/process_handle.h"
30 // received for a given process.
35 virtual void OnReceivedTaskPort(ProcessHandle process) = 0;
38 // Returns the mach task port for |process| if possible, or else
40 virtual mach_port_t TaskForPid(ProcessHandle process) const = 0;
48 void NotifyObservers(ProcessHandle process);
  /external/valgrind/gdbserver_tests/
nlgone_abrt.stderrB.exp 1 relaying data between gdb and process ....
nlgone_exit.stderrB.exp 1 relaying data between gdb and process ....
nlgone_return.stderrB.exp 1 relaying data between gdb and process ....
nlself_invalidate.stderrB.exp 1 relaying data between gdb and process ....
  /external/ltrace/
breakpoint.h 47 void (*on_hit)(struct breakpoint *bp, struct process *proc);
48 void (*on_continue)(struct breakpoint *bp, struct process *proc);
49 void (*on_install)(struct breakpoint *bp, struct process *proc);
50 void (*on_retract)(struct breakpoint *bp, struct process *proc);
59 struct breakpoint *bp, struct process *proc);
73 void breakpoint_on_hit(struct breakpoint *bp, struct process *proc);
77 void breakpoint_on_continue(struct breakpoint *bp, struct process *proc);
86 void breakpoint_on_retract(struct breakpoint *bp, struct process *proc);
92 void breakpoint_on_install(struct breakpoint *bp, struct process *proc);
97 struct breakpoint *bp, struct process *proc)
    [all...]
proc.h 59 STATE_IGNORED /* ignore this process (it's a fork and no -f was used) */
84 * have struct process for the whole group and struct task (or struct
87 struct process { struct
89 struct process *parent; /* needed by STATE_BEING_CREATED */
98 int mask_32bit; /* 1 if 64-bit ltrace is tracing 32-bit process */
136 * Process chaining.
138 struct process *next;
140 /* LEADER points to the leader thread of the POSIX.1 process.
142 process structures chained by NEXT represent other threads,
145 that case this process is waiting to be collected. *
    [all...]
backend.h 42 * on the same OS (e.g. a way to insert a breakpoint into the process
59 /* Answer whether the process PID is stopped. Returns 0 when not
73 void trace_set_options(struct process *proc);
80 * to a running process, whose PID is given on the command line. */
86 /* The back end may need to store arbitrary data to a process. This
89 void get_arch_dep(struct process *proc);
94 * us to use 32-bit ltrace to trace 64-bit process, even on arches
98 void *get_instruction_pointer(struct process *proc);
101 void set_instruction_pointer(struct process *proc, void *addr);
104 void *get_stack_pointer(struct process *proc)
    [all...]
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/javabeans/
Shape.java 20 public int process(); method in interface:Shape
  /external/icu/tools/srcgen/currysrc/src/main/java/com/google/currysrc/api/process/
Processor.java 16 package com.google.currysrc.api.process;
21 * An interface for objects that process a {@link CompilationUnit}.
25 void process(Context context, CompilationUnit cu); method in interface:Processor
  /hardware/bsp/intel/peripheral/libupm/examples/javascript/
grovespeaker.js 40 process.on('SIGINT', function()
43 process.exit(0);
tsl2561.js 40 process.on('SIGINT', function()
43 process.exit(0);
  /cts/tests/ProcessTest/NoShareUidApp/src/com/android/cts/process/activity/
NoSharePidActivity.java 16 package com.android.cts.process.activity;
  /cts/tests/ProcessTest/ShareUidApp/src/com/android/cts/process/activity/
SharePidActivity.java 16 package com.android.cts.process.activity;
SharePidSubActivity.java 16 package com.android.cts.process.activity;
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/internal/process/
SystemProcessTest.java 18 package org.apache.harmony.luni.tests.internal.process;
29 Process process = null; local
35 process = (Process) execArgs[0];
36 OutputStream os = process.getOutputStream();
39 process.waitFor();
50 process.waitFor();
52 process.destroy();
  /frameworks/base/media/mca/filterfw/java/android/filterfw/core/
Program.java 27 public abstract void process(Frame[] inputs, Frame output); method in class:Program
29 public void process(Frame input, Frame output) { method in class:Program
32 process(inputs, output); method
  /external/compiler-rt/test/asan/TestCases/Windows/
dll_noreturn.cc 5 #include <process.h>

Completed in 446 milliseconds

1 2 3 4 5 6 7 8 91011>>