/external/ltrace/ |
handle_event.c | 59 static void callstack_push_syscall(struct process *proc, int sysnum); 60 static void callstack_push_symfunc(struct process *proc, struct breakpoint *bp); 64 void callstack_pop(struct process *proc); 66 static char *shortsignal(struct process *proc, int signum); 67 static char *sysname(struct process *proc, int sysnum); 68 static char *arch_sysname(struct process *proc, int sysnum); 71 call_handler(struct process *proc, Event *event) 204 debug(1, "[%d] event: new process", 273 struct process *proc = malloc(sizeof(*proc)); 280 "Couldn't initialize tracing of process %d.\n" [all...] |
/external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/activity/ |
ScriptProcessMonitor.java | 239 InterpreterProcess process = mProcessList.get(position); local 240 ((TextView) itemView.findViewById(R.id.process_title)).setText(process.getName()); 241 ((TextView) itemView.findViewById(R.id.process_age)).setText(process.getUptime()); 242 ((TextView) itemView.findViewById(R.id.process_details)).setText(process.getHost() + ":" 243 + process.getPort()); 244 ((TextView) itemView.findViewById(R.id.process_status)).setText("PID " + process.getPid());
|
/external/valgrind/gdbserver_tests/ |
mssnapshot.stderrB.exp | 1 relaying data between gdb and process .... 11 v.kill : kill the Valgrind process 26 monitor command request to kill this process
|
/external/elfutils/libdwfl/ |
linux-pid-attach.c | 1 /* Get Dwarf Frame state for target live PID process. 82 /* Make sure there is a SIGSTOP signal pending even when the process is 123 Dwfl_Process *process = dwfl->process; local 124 if (ebl_get_elfclass (process->ebl) == ELFCLASS64) 244 Dwfl_Process *process = thread->process; local 245 Ebl *ebl = process->ebl; 309 if (dwfl->process == NULL && dwfl->attacherr == DWFL_E_NOERROR) 400 if (dwfl != NULL && dwfl->process != NUL [all...] |
/external/jsoncpp/ |
makerelease.py | 51 process = subprocess.Popen( cmd, 54 stdout = process.communicate()[0] 55 if process.returncode: 57 error.returncode = process.returncode 156 process = subprocess.Popen( cmd, 160 stdout = process.communicate()[0] 161 status = (process.returncode == 0) 186 process = subprocess.Popen( cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT ) 187 stdout = process.communicate()[0] 188 if process.returncode != 0 [all...] |
/external/ltrace/sysdeps/linux-gnu/ppc/ |
plt.c | 79 * and resolved (to some address). When the process starts (or when 90 * the process as if nothing happened. 197 arch_dynlink_done(struct process *proc) 284 arch_translate_address_dyn(struct process *proc, 351 sym2addr(struct process *proc, struct library_symbol *sym) 593 read_plt_slot_value(struct process *proc, GElf_Addr addr, GElf_Addr *valp) 612 unresolve_plt_slot(struct process *proc, GElf_Addr addr, GElf_Addr value) 627 arch_elf_add_func_entry(struct process *proc, struct ltelf *lte, 691 arch_elf_add_plt_entry(struct process *proc, struct ltelf *lte, 754 * want read this from ELF file, but from process image. Tha [all...] |
/external/icu/icu4c/source/layout/ |
ContextualSubstSubtables.cpp | 149 le_uint32 ContextualSubstitutionSubtable::process(const LookupProcessor *lookupProcessor, function in class:ContextualSubstitutionSubtable 168 return subtable->process(lookupProcessor, glyphIterator, fontInstance, success); 174 return subtable->process(lookupProcessor, glyphIterator, fontInstance, success); 180 return subtable->process(lookupProcessor, glyphIterator, fontInstance, success); 188 le_uint32 ContextualSubstitutionFormat1Subtable::process(const LookupProcessor *lookupProcessor, function in class:ContextualSubstitutionFormat1Subtable 238 le_uint32 ContextualSubstitutionFormat2Subtable::process(const LookupProcessor *lookupProcessor, function in class:ContextualSubstitutionFormat2Subtable 292 le_uint32 ContextualSubstitutionFormat3Subtable::process(const LookupProcessor *lookupProcessor, function in class:ContextualSubstitutionFormat3Subtable 325 le_uint32 ChainingContextualSubstitutionSubtable::process(const LookupProcessor *lookupProcessor, function in class:ChainingContextualSubstitutionSubtable 344 return subtable->process(lookupProcessor, glyphIterator, fontInstance, success); 350 return subtable->process(lookupProcessor, glyphIterator, fontInstance, success) 370 le_uint32 ChainingContextualSubstitutionFormat1Subtable::process(const LookupProcessor *lookupProcessor, function in class:ChainingContextualSubstitutionFormat1Subtable 442 le_uint32 ChainingContextualSubstitutionFormat2Subtable::process(const LookupProcessor *lookupProcessor, function in class:ChainingContextualSubstitutionFormat2Subtable 530 le_uint32 ChainingContextualSubstitutionFormat3Subtable::process(const LookupProcessor *lookupProcessor, function in class:ChainingContextualSubstitutionFormat3Subtable [all...] |
PairPositioningSubtables.cpp | 19 le_uint32 PairPositioningSubtable::process(const LEReferenceTo<PairPositioningSubtable> &base, GlyphIterator *glyphIterator, const LEFontInstance *fontInstance, LEErrorCode &success) const function in class:PairPositioningSubtable 31 return subtable->process(subtable, glyphIterator, fontInstance, success); 41 return subtable->process(subtable, glyphIterator, fontInstance, success); 50 le_uint32 PairPositioningFormat1Subtable::process(const LEReferenceTo<PairPositioningFormat1Subtable> &base, GlyphIterator *glyphIterator, const LEFontInstance *fontInstance, LEErrorCode &success) const function in class:PairPositioningFormat1Subtable 93 le_uint32 PairPositioningFormat2Subtable::process(const LEReferenceTo<PairPositioningFormat2Subtable> &base, GlyphIterator *glyphIterator, const LEFontInstance *fontInstance, LEErrorCode &success) const function in class:PairPositioningFormat2Subtable
|
/external/chromium-trace/catapult/telemetry/telemetry/timeline/ |
memory_dump_event.py | 137 """A memory dump event belonging to a single timeline.Process object. 144 process: The Process object associated with the memory dump. 145 dump_events: A list of dump events of the process with the same dump id. 149 process: The timeline.Process object that owns this memory dump event. 153 def __init__(self, process, dump_events): 161 self.process = process 167 assert (event['ph'] == 'v' and self.process.pid == event['pid'] an [all...] |
/external/caliper/caliper/src/main/java/com/google/caliper/runner/ |
StreamService.java | 58 * A {@link Service} that establishes a connection over a socket to a process and then allows 60 * process streams (stdout and stderr) as well as allowing data to be written over the socket. 73 * the worker process to be forcibly shutdown and {@link #readItem(long, TimeUnit)}, 79 /** How long to wait for a process that should be exiting to actually exit. */ 92 private volatile Process process; field in class:StreamService 123 process = worker.startWorker(); 128 // Failsafe kill the process and the executor service. 129 // If the process has already exited cleanly, this will be a no-op. 143 process.destroy() [all...] |
/external/opencv3/modules/photo/src/ |
merge.cpp | 59 void process(InputArrayOfArrays src, OutputArray dst, InputArray _times, InputArray input_response) function in class:cv::MergeDebevecImpl 121 void process(InputArrayOfArrays src, OutputArray dst, InputArray times) function in class:cv::MergeDebevecImpl 123 process(src, dst, times, Mat()); 147 void process(InputArrayOfArrays src, OutputArrayOfArrays dst, InputArray, InputArray) function in class:cv::MergeMertensImpl 149 process(src, dst); 152 void process(InputArrayOfArrays src, OutputArray dst) function in class:cv::MergeMertensImpl 299 void process(InputArrayOfArrays src, OutputArray dst, InputArray _times, InputArray input_response) function in class:cv::MergeRobertsonImpl 336 void process(InputArrayOfArrays src, OutputArray dst, InputArray times) function in class:cv::MergeRobertsonImpl 338 process(src, dst, times, Mat());
|
tonemap.cpp | 63 void process(InputArray _src, OutputArray _dst) function in class:cv::TonemapImpl 118 void process(InputArray _src, OutputArray _dst) function in class:cv::TonemapDragoImpl 126 linear->process(src, img); 150 linear->process(img, img); 202 void process(InputArray _src, OutputArray _dst) function in class:cv::TonemapDurandImpl 209 linear->process(src, img); 286 void process(InputArray _src, OutputArray _dst) function in class:cv::TonemapReinhardImpl 293 linear->process(src, img); 325 linear->process(img, img); 380 void process(InputArray _src, OutputArray _dst function in class:cv::TonemapMantiukImpl [all...] |
/external/chromium-trace/catapult/tracing/third_party/gl-matrix/jsdoc-template/ |
publish.js | 71 publish.classesIndex = classesTemplate.process(classes); // kept in memory 82 output = classTemplate.process(symbol); 89 publish.classesIndex = classesTemplate.process(classes); 97 var classesIndex = classesindexTemplate.process(classes); 122 var filesIndex = fileindexTemplate.process(allFiles);
|
/external/icu/tools/srcgen/src/main/java/com/android/icu4j/srcgen/ |
Icu4jTransform.java | 25 import com.google.currysrc.api.process.DefaultRule; 26 import com.google.currysrc.api.process.Rule; 27 import com.google.currysrc.api.process.ast.BodyDeclarationLocator; 28 import com.google.currysrc.api.process.ast.BodyDeclarationLocators; 29 import com.google.currysrc.api.process.ast.TypeLocator; [all...] |
TranslateJcite.java | 20 import com.google.currysrc.api.process.Reporter; 21 import com.google.currysrc.api.process.ast.AstNodes; 22 import com.google.currysrc.api.process.ast.BodyDeclarationLocator; 40 import static com.google.currysrc.api.process.ast.BodyDeclarationLocators.findDeclarationNode; 41 import static com.google.currysrc.api.process.ast.BodyDeclarationLocators.matchesAny;
|
RunWithAnnotator.java | 18 import com.google.currysrc.api.process.Context; 19 import com.google.currysrc.api.process.Processor; 86 public void process(Context context, CompilationUnit cu) { method in class:RunWithAnnotator
|
/external/ltrace/sysdeps/linux-gnu/m68k/ |
fetch.c | 46 fetch_register_banks(struct process *proc, struct fetch_context *context, 60 arch_fetch_arg_init(enum tof type, struct process *proc, 95 arch_fetch_arg_clone(struct process *proc, struct fetch_context *context) 106 struct process *proc, struct arg_type_info *info, 146 struct process *proc, struct arg_type_info *info,
|
/external/ltrace/sysdeps/linux-gnu/mips/ |
trace.c | 60 \param proc The process that had an event. 68 get_arch_dep(struct process *proc) 73 \param proc Process that had event. 90 syscall_p(struct process *proc, int status, int *sysnum) 147 int mips_next_pcs(struct process *proc, uint32_t pc, uint32_t *newpc) 268 arch_sw_singlestep(struct process *proc, struct breakpoint *bp, 296 \param proc The process that had an event. 323 gimme_arg(enum tof type, struct process *proc, int arg_num,
|
/external/okhttp/okio/benchmarks/src/main/java/com/squareup/okio/benchmarks/ |
BufferPerformanceBench.java | 64 * Each benchmark thread maintains three buffers; a receive buffer, a process buffer 67 * - We fill up the receive buffer using the origin, write the request to the process 68 * buffer, and consume the process buffer. 69 * - We fill up the process buffer using the origin, write the response to the send 264 final Buffer process = new Buffer(); field in class:BufferPerformanceBench.BufferState 269 process.clear(); 273 * Fills up the receive buffer, hands off to process buffer and returns it for consuming. 274 * Expects receive and process buffers to be empty. Leaves the receive buffer empty and 275 * process buffer full. 278 writeChunked(received, bytes, maxChunkSize).readAll(process); [all...] |
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/tests/src/androidx/media/filterfw/samples/simplecamera/ |
ImageGoodnessFilterTest.java | 63 process(); method 91 process(); method 119 process(); method 147 process(); method 175 process(); method
|
/device/google/dragon/audio/hal/dsp/tests/ |
eq_test.c | 63 static void process(struct eq *eq, float *data, int count) function 94 process(eq, data, frames); 109 process(eq, data + frames, frames);
|
/external/autotest/client/site_tests/platform_DebugDaemonGetPerfData/ |
platform_DebugDaemonGetPerfData.py | 17 process running in the background. 108 if result.startswith('<process exited with status: '): 142 process = subprocess.Popen(cmd, stdout=devnull, shell=True) 148 # Terminate the process and actually wait for it to terminate. 149 process.terminate() 150 while process.poll() == None:
|
/external/icu/tools/srcgen/currysrc/src/main/java/com/google/currysrc/processors/ |
ReplaceSelectedJavadoc.java | 20 import com.google.currysrc.api.process.Reporter; 21 import com.google.currysrc.api.process.ast.BodyDeclarationLocator; 22 import com.google.currysrc.api.process.ast.BodyDeclarationLocators;
|
/external/libchrome/base/process/ |
kill_posix.cc | 5 #include "base/process/kill.h" 18 #include "base/process/process_iterator.h" 58 // On ChromeOS, only way a process gets kill by SIGKILL 82 DPLOG(ERROR) << "Unable to terminate process group " << process_group_id; 96 DPLOG(ERROR) << "Unable to terminate process " << handle; 137 // Return true if the given child is dead. This will also reap the process. 190 // just wait for the process to die now in a blocking manner. 210 void EnsureProcessTerminated(Process process) { 212 if (IsChildDead(process.Pid()) [all...] |
/external/opencv3/modules/cudalegacy/test/ |
NCVTest.hpp | 92 virtual bool process() = 0; 128 res = process(); 173 if (!this->process())
|