Searched defs:process (Results 276 - 300 of 507) sorted by relevance

<<11121314151617181920>>

/external/dexmaker/src/dx/java/com/android/dx/ssa/
H A DSsaRenamer.java167 new BlockRenamer(block).process();
305 * Constructs a block renamer instance. Call {@code process}
306 * to process.
308 * @param block {@code non-null;} block to process
366 public void process() { method in class:SsaRenamer.BlockRenamer
476 /* don't process sources for phi's */
600 * @param insn insn to process.
/external/emma/core/java12/com/vladium/emma/report/xml/
H A DReportGenerator.java60 public void process (final IMetaData mdata, final ICoverageData cdata, method in class:ReportGenerator
80 m_log.trace1 ("process", "[" + getType () + "] report generated in " + (end - start) + " ms");
/external/guava/guava/src/com/google/common/hash/
H A DAbstractStreamingHashFunction.java73 /** Number of bytes to be filled before process() invocation(s). */
76 /** Number of bytes processed per process() invocation. */
80 * Constructor for use by subclasses. This hasher instance will process chunks of the specified
83 * @param chunkSize the number of bytes available per {@link #process(ByteBuffer)} invocation;
91 * Constructor for use by subclasses. This hasher instance will process chunks of the specified
95 * @param chunkSize the number of bytes available per {@link #process(ByteBuffer)} invocation;
114 protected abstract void process(ByteBuffer bb); method in class:AbstractStreamingHashFunction.AbstractStreamingHasher
122 * {@link #process(ByteBuffer)}.
132 process(bb);
160 // Now process directl
[all...]
/external/guava/guava-tests/test/com/google/common/hash/
H A DAbstractStreamingHasherTest.java112 * sinks process it; all should produce the same answer, the only difference should be the
113 * number of process()/processRemaining() invocations, due to alignment.
174 @Override protected void process(ByteBuffer bb) { method in class:AbstractStreamingHasherTest.Sink
192 assertEquals(before + 1, after); // default implementation pads and calls process()
/external/icu/icu4c/source/layout/
H A DLookupProcessor.cpp49 le_int32 LookupProcessor::process(LEGlyphStorage &glyphStorage, GlyphPositionAdjustments *glyphPositionAdjustments, function in class:LookupProcessor
/external/javassist/src/main/javassist/tools/web/
H A DWebserver.java188 final void process(Socket clnt) throws IOException { method in class:Webserver
402 web.process(sock);
/external/jpeg/
H A Drdjpgcom.c107 #define M_SOF1 0xC1 /* N indicates which compression process */
188 * want to process.
271 const char * process; local
282 case M_SOF0: process = "Baseline"; break;
283 case M_SOF1: process = "Extended sequential"; break;
284 case M_SOF2: process = "Progressive"; break;
285 case M_SOF3: process = "Lossless"; break;
286 case M_SOF5: process = "Differential sequential"; break;
287 case M_SOF6: process = "Differential progressive"; break;
288 case M_SOF7: process
[all...]
/external/libvpx/libvpx/build/make/
H A Dconfigure.sh1324 process() { function
/external/lldb/source/Commands/
H A DCommandObjectExpression.cpp141 Process *process = interpreter.GetExecutionContext().GetProcessPtr(); local
142 if (process != NULL)
144 ignore_breakpoints = process->GetIgnoreBreakpointsInExpressions();
145 unwind_on_error = process->GetUnwindOnErrorInExpressions();
H A DCommandObjectRegister.cpp106 Process *process = exe_ctx.GetProcessPtr(); local
107 if (process && reg_info->byte_size == process->GetAddressByteSize())
/external/lldb/source/Core/
H A DValue.cpp359 Process *process = exe_ctx->GetProcessPtr(); local
360 if (process == NULL || !process->IsAlive())
406 error.SetErrorString ("can't read load address (invalid process)");
413 data.SetByteOrder(process->GetTarget().GetArchitecture().GetByteOrder());
414 data.SetAddressByteSize(process->GetTarget().GetArchitecture().GetAddressByteSize());
461 // Don't use the load address if the process has exited.
567 // The address is an address in this process, so just copy it
576 // the object files if we don't have a live process. Lets always
577 // try and read from the process i
592 Process *process = exe_ctx->GetProcessPtr(); local
[all...]
H A DValueObjectConstResult.cpp345 Process *process = exe_ctx.GetProcessPtr(); local
346 if (process && process->IsPossibleDynamicValue(*this))
H A DValueObjectRegister.cpp363 Process *process = exe_ctx.GetProcessPtr(); local
364 if (process)
365 m_data.SetAddressByteSize(process->GetAddressByteSize());
H A DValueObjectVariable.cpp191 // process. If this variable is an aggregate type, we just need
199 Process *process = exe_ctx.GetProcessPtr(); local
200 if (value_type == Value::eValueTypeFileAddress && process && process->IsAlive())
/external/lldb/source/Expression/
H A DClangExpressionParser.cpp528 Process *process = exe_ctx.GetProcessPtr(); local
542 if (!process && execution_policy == eExecutionPolicyAlways)
550 if (m_expr.NeedsValidation() && process)
552 if (!process->GetDynamicCheckers())
568 process->SetDynamicCheckers(dynamic_checkers);
574 IRDynamicChecks ir_dynamic_checks(*process->GetDynamicCheckers(), function_name.AsCString());
H A DClangFunction.cpp69 // Can't make a ClangFunction without a process.
92 // Can't make a ClangFunction without a process.
232 errors.Printf("no process - unable to inject function");
247 Process *process = exe_ctx.GetProcessPtr(); local
249 if (!process)
254 if (process != jit_process_sp.get())
275 if (process && m_jit_start_addr)
276 m_jit_process_wp = lldb::ProcessWP(process->shared_from_this());
310 Process *process = exe_ctx.GetProcessPtr(); local
312 if (process
450 Process *process = exe_ctx.GetProcessPtr(); local
[all...]
/external/lldb/source/Host/freebsd/
H A DHost.cpp297 Host::GetAuxvData(lldb_private::Process *process) argument
313 if (::ptrace(PT_IO, process->GetID(), (caddr_t)&pid, 0)) {
324 if (::ptrace(PT_IO, process->GetID(), (caddr_t)&pid, 0)) {
/external/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/
H A DItaniumABILanguageRuntime.cpp73 Process *process = exe_ctx.GetProcessPtr(); local
77 process->GetByteOrder(),
78 process->GetAddressByteSize());
79 size_t address_byte_size = process->GetAddressByteSize();
81 size_t bytes_read = process->ReadMemory (original_ptr,
239 size_t bytes_read = process->ReadMemory (offset_to_top_location,
250 int64_t offset_to_top = data.GetMaxS64(&offset, process->GetAddressByteSize());
287 ItaniumABILanguageRuntime::CreateInstance (Process *process, lldb::LanguageType language) argument
289 // FIXME: We have to check the process and make sure we actually know that this process support
[all...]
/external/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCRuntimeV1.cpp40 AppleObjCRuntimeV1::AppleObjCRuntimeV1(Process *process) : argument
41 AppleObjCRuntime (process),
73 AppleObjCRuntimeV1::CreateInstance (Process *process, lldb::LanguageType language) argument
75 // FIXME: This should be a MacOS or iOS process, and we need to look for the OBJC section to make
81 if (AppleObjCRuntime::GetObjCVersion (process, objc_module_sp) == eAppleObjC_V1)
82 return new AppleObjCRuntimeV1 (process);
195 // Process *process = exe_ctx.GetProcessPtr();
196 // if (process)
198 // uint8_t pointer_size = process->GetAddressByteSize();
201 // return process
332 Process *process = GetProcess(); local
358 Process *process = GetProcess(); local
[all...]
/external/lldb/source/Plugins/OperatingSystem/Python/
H A DOperatingSystemPython.cpp59 OperatingSystemPython::CreateInstance (Process *process, bool force) argument
62 FileSpec python_os_plugin_spec (process->GetPythonOSPluginPath());
65 std::unique_ptr<OperatingSystemPython> os_ap (new OperatingSystemPython (process, python_os_plugin_spec));
87 OperatingSystemPython::OperatingSystemPython (lldb_private::Process *process, const FileSpec &python_module_path) : argument
88 OperatingSystem (process),
94 if (!process)
96 TargetSP target_sp = process->CalculateTarget();
119 ScriptInterpreterObjectSP object_sp = m_interpreter->OSPlugin_CreatePluginObject(os_plugin_class_name.c_str(), process->CalculateProcess());
180 // content of the process, and we're going to use python, which requires the API lock to do it.
319 // content of the process, an
[all...]
/external/lldb/source/Target/
H A DCPPLanguageRuntime.cpp159 CPPLanguageRuntime::CPPLanguageRuntime (Process *process) : argument
160 LanguageRuntime (process)
H A DExecutionContext.cpp139 ExecutionContext::ExecutionContext(Process* process, Thread *thread, StackFrame *frame) : argument
141 m_process_sp (process->shared_from_this()),
145 if (process)
146 m_target_sp = process->GetTarget().shared_from_this();
358 ExecutionContext::SetProcessPtr (Process *process) argument
360 if (process)
361 m_process_sp = process->shared_from_this();
480 // represent the same thread within a process.
696 // Only fill in the thread and frame if our process is stopped
721 ExecutionContextRef::SetProcessPtr (Process *process) argument
[all...]
H A DLanguageRuntime.cpp229 LanguageRuntime::FindPlugin (Process *process, lldb::LanguageType language) argument
238 language_runtime_ap.reset (create_callback(process, language));
250 LanguageRuntime::LanguageRuntime(Process *process) : argument
251 m_process (process)
H A DMemory.cpp26 MemoryCache::MemoryCache(Process &process) : argument
27 m_process (process),
181 // We need to read from the process
356 AllocatedMemoryCache::AllocatedMemoryCache (Process &process) : argument
357 m_process (process),
H A DTargetList.cpp398 Process* process = (*pos)->GetProcessSP().get(); local
399 if (process && process->GetID() == pid)
410 TargetList::FindTargetWithProcess (Process *process) const
413 if (process)
419 if (process == (*pos)->GetProcessSP().get())
459 Process* process = target_sp->GetProcessSP().get(); local
460 if (process)
462 process->SendAsyncInterrupt();
481 Process *process local
[all...]

Completed in 4533 milliseconds

<<11121314151617181920>>