/external/chromium_org/chrome/browser/extensions/api/declarative/ |
rules_registry_service.cc | 168 // Thus, |embedder_process_id| == |process_id| ==> the process ID is a 232 content::RenderProcessHost* process = local 234 RemoveWebViewRulesRegistries(process->GetID());
|
/external/chromium_org/chrome/browser/ |
memory_details_win.cc | 58 ProcessData process; local 59 process.name = process_template[index].name; 60 process.process_name = process_template[index].process_name; 61 process_data_.push_back(process); 147 // Add the process info to our list.
|
/external/chromium_org/chrome/browser/service_process/ |
service_process_control_browsertest.cc | 11 #include "base/process/kill.h" 12 #include "base/process/process_handle.h" 13 #include "base/process/process_iterator.h" 45 // Launch the process asynchronously. 79 // ForceServiceProcessShutdown removes the process from launched on Mac. 146 // Make sure we are connected to the service process. 152 // And then shutdown the service process. 159 // Make sure we are connected to the service process. 165 // And then shutdown the service process. 169 // This tests the case when a service process is launched when the browse 200 ServiceProcessControl* process = ServiceProcessControl::GetInstance(); local 214 ServiceProcessControl* process = ServiceProcessControl::GetInstance(); local [all...] |
/external/chromium_org/chrome/browser/ui/search/ |
instant_search_prerenderer_unittest.cc | 206 content::MockRenderProcessHost* process = local 209 return process->sink().GetFirstMessageMatching(id) != NULL;
|
/external/chromium_org/chrome/installer/util/ |
google_update_util.cc | 17 #include "base/process/kill.h" 18 #include "base/process/launch.h" 96 base::win::ScopedHandle process; local 100 &process)) { 102 } else if (!base::WaitForExitCodeWithTimeout(process, &exit_code, timeout)) {
|
/external/chromium_org/components/visitedlink/browser/ |
visitedlink_event_listener.cc | 48 content::RenderProcessHost* process = local 50 if (!process) 53 table_memory->ShareToProcess(process->GetHandle(), &handle_for_process); 55 process->Send(new ChromeViewMsg_VisitedLink_NewTable( 84 content::RenderProcessHost* process = local 86 if (!process) 89 if (!process->VisibleWidgetCount()) 93 process->Send(new ChromeViewMsg_VisitedLink_Reset()); 101 process->Send(new ChromeViewMsg_VisitedLink_Add(pending_)); 137 content::RenderProcessHost* process local 182 content::RenderProcessHost* process = local 198 content::RenderProcessHost* process = local [all...] |
/external/chromium_org/content/common/gpu/ |
stream_texture_manager_android.cc | 128 base::ProcessHandle process = channel_->renderer_pid(); local 132 process,
|
/external/chromium_org/extensions/browser/ |
event_listener_map.h | 30 // that an event can be dispatched to. This is a lazy listener if |process| is 34 // is listening to the event. It is associated with no process, so to dispatch 35 // an event to a lazy listener one must start a process running the associated 48 content::RenderProcessHost* process, 58 content::RenderProcessHost* process; member in struct:extensions::EventListener 100 // Removes all listeners with process equal to |process|. 101 void RemoveListenersForProcess(const content::RenderProcessHost* process); 115 // Returns true if there is a listener for |extension_id| in |process|. 116 bool HasProcessListener(content::RenderProcessHost* process, [all...] |
/external/chromium_org/sandbox/win/src/ |
process_thread_policy.cc | 20 // process for the process created by the broker. All others are potential 35 // Creates a child process and duplicates the handles to 'target_process'. The 79 scoped_ptr<PolicyRule> process; local 82 process.reset(new PolicyRule(GIVE_READONLY)); 86 process.reset(new PolicyRule(GIVE_ALLACCESS)); 94 if (!process->AddStringMatch(IF, NameBased::NAME, name, CASE_INSENSITIVE)) { 97 if (!policy->AddRule(IPC_CREATEPROCESSW_TAG, process.get())) { 125 client_info.process, handle, 0, FALSE, 157 client_info.process, handle, 0, FALSE [all...] |
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
StyleElement.cpp | 64 process(element); 95 process(element); 101 process(element); 105 void StyleElement::process(Element* element) function in class:WebCore::StyleElement
|
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/ |
ScriptProcessorNode.cpp | 102 // Regardless of the allowed buffer sizes, we still need to process at the granularity of the AudioNode. 152 void ScriptProcessorNode::process(size_t framesToProcess) function in class:WebCore::ScriptProcessorNode 215 // Avoid building up requests on the main thread to fire process events when they're not being handled. 244 // De-reference to match the ref() call in process().
|
WaveShaperDSPKernel.cpp | 60 void WaveShaperDSPKernel::process(const float* source, float* destination, size_t framesToProcess) function in class:WebCore::WaveShaperDSPKernel 134 m_upSampler->process(source, tempP, framesToProcess); 136 // Process at 2x up-sampled rate. 139 m_downSampler->process(tempP, destination, framesToProcess * 2); 152 m_upSampler->process(source, tempP, framesToProcess); 153 m_upSampler2->process(tempP, tempP2, framesToProcess * 2); 155 // Process at 4x up-sampled rate. 158 m_downSampler2->process(tempP2, tempP, framesToProcess * 4); 159 m_downSampler->process(tempP, destination, framesToProcess * 2);
|
/external/chromium_org/third_party/WebKit/Source/platform/audio/ |
AudioDelayDSPKernel.cpp | 91 void AudioDelayDSPKernel::process(const float* source, float* destination, size_t framesToProcess) function in class:WebCore::AudioDelayDSPKernel
|
DownSampler.cpp | 85 void DownSampler::process(const float* sourceP, float* destP, size_t sourceFramesToProcess) function in class:WebCore::DownSampler 121 // Actually process oddSamplesP with m_reducedKernel for efficiency. 123 m_convolver.process(&m_reducedKernel, oddSamplesP, destP, destFramesToProcess);
|
UpSampler.cpp | 77 void UpSampler::process(const float* sourceP, float* destP, size_t sourceFramesToProcess) function in class:WebCore::UpSampler 111 m_convolver.process(&m_kernel, sourceP, oddSamplesP, sourceFramesToProcess);
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/ |
filereader_unittest.py | 37 This processor simply records the parameters passed to its process() 44 """The parameters passed for all calls to the process() method.""" 49 def process(self, lines, file_path, test_kwarg=None): member in class:TextFileReaderTest.MockProcessor 72 """Return the parameters passed to MockProcessor.process()."""
|
/external/chromium_org/third_party/pexpect/ |
FSM.py | 11 the process() method uses these tables to decide what action to call and what 34 The processing sequence is as follows. The process() method is given an 35 input_symbol to process. The FSM will search the table of transitions that 40 If the pair (input_symbol, current_state) is found then process() will call the 48 If the current_state is found then the process() method will call the 57 defined then the process() method will call the associated action function and 137 The action may be set to None in which case the process() method will 155 The action may be set to None in which case the process() method will 171 The process() method checks the "any" state associations after it first 174 The action may be set to None in which case the process() method wil 228 def process (self, input_symbol): member in class:FSM [all...] |
/external/chromium_org/third_party/tcmalloc/chromium/src/windows/ |
addr2line-pdb.c | 53 HANDLE process; local 85 process = GetCurrentProcess(); 87 if (!SymInitialize(process, NULL, FALSE)) { 94 if (SymGetSearchPath(process, search, SEARCH_CAP)) { 97 SymCleanup(process); 107 if (!SymSetSearchPath(process, search)) { 114 module_base = SymLoadModuleEx(process, NULL, filename, NULL, 0, 0, NULL, 0); 120 SymCleanup(process); 140 if (SymFromAddr(process, (DWORD64)addr, NULL, pSymbol)) { 147 if (SymGetLineFromAddr64(process, (DWORD64)addr, &dummy, &line)) [all...] |
/external/chromium_org/third_party/tcmalloc/vendor/src/windows/ |
addr2line-pdb.c | 59 HANDLE process; local 92 process = GetCurrentProcess(); 94 if (!SymInitialize(process, NULL, FALSE)) { 101 if (SymGetSearchPath(process, search, SEARCH_CAP)) { 104 SymCleanup(process); 114 if (!SymSetSearchPath(process, search)) { 121 module_base = SymLoadModuleEx(process, NULL, filename, NULL, 0, 0, NULL, 0); 127 SymCleanup(process); 147 if (SymFromAddr(process, (DWORD64)addr, NULL, pSymbol)) { 154 if (SymGetLineFromAddr64(process, (DWORD64)addr, &dummy, &line)) [all...] |
/external/chromium_org/tools/json_schema_compiler/ |
idl_schema.py | 98 def process(self, callbacks): member in class:Callspec 104 {'name': self.node.GetName()}).process(callbacks) 111 parameter = Param(node).process(callbacks) 126 def process(self, callbacks): member in class:Param 129 {'name': self.node.GetName()}).process(callbacks) 140 def process(self, callbacks): member in class:Dictionary 144 k, v = Member(node).process(callbacks) 166 def process(self, callbacks): member in class:Member 191 .process(callbacks)) 200 self.node, properties).process(callbacks 222 def process(self, callbacks): member in class:Typeref 291 def process(self, callbacks): member in class:Enum 340 def process(self): member in class:Namespace 387 def process(self): member in class:IDLSchema [all...] |
/external/clang/test/SemaTemplate/ |
deduction-crash.cpp | 42 int process(Event) function in struct:state_machine::region_processing_helper 51 helper->process(0)
|
/external/guava/guava/src/com/google/common/hash/ |
Murmur3_128HashFunction.java | 59 @Override protected void process(ByteBuffer bb) { method in class:Murmur3_128HashFunction.Murmur3_128Hasher
|
/external/guava/guava-tests/test/com/google/common/hash/ |
AbstractNonStreamingHashFunctionTest.java | 60 protected void process(ByteBuffer bb) { method
|
/external/icu4c/layout/ |
MarkToBasePosnSubtables.cpp | 29 le_int32 MarkToBasePositioningSubtable::process(GlyphIterator *glyphIterator, const LEFontInstance *fontInstance) const function in class:MarkToBasePositioningSubtable
|
MarkToLigaturePosnSubtables.cpp | 28 le_int32 MarkToLigaturePositioningSubtable::process(GlyphIterator *glyphIterator, const LEFontInstance *fontInstance) const function in class:MarkToLigaturePositioningSubtable
|