HomeSort by relevance Sort by last modified time
    Searched refs:Process (Results 76 - 100 of 998) sorted by null

1 2 34 5 6 7 8 91011>>

  /cts/hostsidetests/devicepolicy/app/ManagedProfile/src/com/android/cts/managedprofile/
UserRestrictionActivity.java 23 import android.os.Process;
72 + " for user " + Process.myUserHandle());
77 + " for user " + Process.myUserHandle());
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
Process2Test.java 33 * java.lang.Process#getInputStream(),
34 * java.lang.Process#getErrorStream()
35 * java.lang.Process#getOutputStream()
41 Process p = javaProcessBuilder().start();
49 Process process = null; local
51 process = Runtime.getRuntime().exec(commands, null, null);
52 InputStream is = process.getErrorStream();
64 process.destroy();
68 Process erProcess = null
    [all...]
ProcessTest.java 29 ArrayList<Process> children = new ArrayList<Process>();
41 Process ps = Runtime.getRuntime().exec(psCommand, null, null);
53 Process p = Runtime.getRuntime().exec(commands, null, null);
81 Process p = Runtime.getRuntime().exec(commands, null, null);
110 Process process = Runtime.getRuntime().exec(commands, null, null); local
111 process.waitFor();
112 assertEquals(0, process.exitValue());
115 process = Runtime.getRuntime().exec(commandsSleep, null, null)
130 Process process = Runtime.getRuntime().exec(commands, null, null); local
    [all...]
  /external/chromium_org/third_party/webrtc/modules/pacing/
paced_sender_unittest.cc 95 send_bucket_->Process();
106 send_bucket_->Process();
114 send_bucket_->Process();
130 send_bucket_->Process();
140 EXPECT_EQ(0, send_bucket_->Process());
145 EXPECT_EQ(0, send_bucket_->Process());
154 send_bucket_->Process();
177 send_bucket_->Process();
190 EXPECT_EQ(0, send_bucket_->Process());
195 EXPECT_EQ(0, send_bucket_->Process());
    [all...]
  /external/lldb/source/Target/
Process.cpp 1 //===-- Process.cpp ---------------------------------------------*- C++ -*-===//
12 #include "lldb/Target/Process.h"
48 // Comment out line below to disable memory caching, overriding the process setting
49 // target.process.disable-memory-cache
67 // is part of a new lldb_private::Process instance. It will copy all current
77 // When gettings the value for a key from the process options, we will always
78 // try and grab the setting from the current process if there is one. Else we just
82 Process *process = exe_ctx->GetProcessPtr(); local
83 if (process)
    [all...]
  /external/chromium_org/tools/grit/grit/tool/
xmb_unittest.py 49 xmb.OutputXmb().Process(self.res_tree, self.xmb_file)
56 xmb.OutputXmb().Process(self.res_tree, self.xmb_file, limit_file, False)
76 tool.Process(self.res_tree, self.xmb_file, limit_file, True, dir='.')
85 xmb.OutputXmb().Process(self.res_tree, self.xmb_file)
97 xmb.OutputXmb().Process(self.res_tree, self.xmb_file)
  /system/vold/
Process.cpp 33 #include "Process.h"
35 int Process::readSymLink(const char *path, char *link, size_t max) {
52 int Process::pathMatchesMountPoint(const char* path, const char* mountPoint) {
66 void Process::getProcessName(int pid, char *buffer, size_t max) {
79 int Process::checkFileDescriptorSymLinks(int pid, const char *mountPoint) {
83 int Process::checkFileDescriptorSymLinks(int pid, const char *mountPoint, char *openFilename, size_t max) {
86 // compute path to process's directory of open files
124 int Process::checkFileMaps(int pid, const char *mountPoint) {
128 int Process::checkFileMaps(int pid, const char *mountPoint, char *openFilename, size_t max) {
154 int Process::checkSymLink(int pid, const char *mountPoint, const char *name)
    [all...]
  /external/chromium_org/sandbox/win/src/
Wow64.cc 20 // 64 bit helper process.
70 typedef BOOL (WINAPI* IsWow64ProcessFunction)(HANDLE process, BOOL* wow64);
86 // process passing it that address on the child. The helper process will patch
104 if (!::DuplicateHandle(current_process, dll_load_, child_->Process(),
107 if (!::DuplicateHandle(current_process, continue_load_, child_->Process(),
111 void* buffer = ::VirtualAllocEx(child_->Process(), NULL, page_size,
122 if (!::WriteProcessMemory(child_->Process(), patch_info, &local_patch_info,
136 return Restore64Code(child_->Process(), patch_info);
213 if (!::ReadProcessMemory(child_->Process(), ntdll_, &buffer, kBufferSize
    [all...]
  /cts/tests/tests/app/src/android/app/cts/
ActivityManagerMemoryInfoTest.java 20 import android.os.Process;
37 final long AVAILMEM = Process.getFreeMemory();
62 final long AVAILMEM = Process.getFreeMemory();
  /external/chromium_org/components/cronet/android/java/src/org/chromium/net/
UrlRequestContext.java 9 import android.os.Process;
92 Process.setThreadPriority(Process.THREAD_PRIORITY_BACKGROUND);
  /external/lldb/include/lldb/Target/
ThreadList.h 20 // the process for which this is the thread list. If we ever want a container class
23 // process.
28 friend class Process;
32 ThreadList (Process *process);
106 /// will return false for WillResume, and then the process will not be
110 /// \b true instructs the process to resume normally,
112 /// the process will not actually run. The thread must then return
150 // Classes that inherit from Process can see and modify these
152 Process *m_process; ///< The process that manages this thread list
    [all...]
Memory.h 27 // A class to track memory that was read from a live process between
36 MemoryCache (Process &process);
70 Process &m_process;
149 // need some memory in a process that is being debugged.
157 AllocatedMemoryCache (Process &process);
185 Process &m_process;
  /external/lldb/source/API/
SBFrame.cpp 34 #include "lldb/Target/Process.h"
119 Process *process = exe_ctx.GetProcessPtr(); local
120 if (target && process)
122 Process::StopLocker stop_locker;
123 if (stop_locker.TryLock(&process->GetRunLock()))
139 log->Printf ("SBFrame::GetSymbolContext () => error: process is running");
161 Process *process = exe_ctx.GetProcessPtr(); local
162 if (target && process)
203 Process *process = exe_ctx.GetProcessPtr(); local
243 Process *process = exe_ctx.GetProcessPtr(); local
283 Process *process = exe_ctx.GetProcessPtr(); local
322 Process *process = exe_ctx.GetProcessPtr(); local
361 Process *process = exe_ctx.GetProcessPtr(); local
400 Process *process = exe_ctx.GetProcessPtr(); local
456 Process *process = exe_ctx.GetProcessPtr(); local
496 Process *process = exe_ctx.GetProcessPtr(); local
537 Process *process = exe_ctx.GetProcessPtr(); local
577 Process *process = exe_ctx.GetProcessPtr(); local
617 Process *process = exe_ctx.GetProcessPtr(); local
683 Process *process = exe_ctx.GetProcessPtr(); local
752 Process *process = exe_ctx.GetProcessPtr(); local
839 Process *process = exe_ctx.GetProcessPtr(); local
1019 Process *process = exe_ctx.GetProcessPtr(); local
1091 Process *process = exe_ctx.GetProcessPtr(); local
1179 Process *process = exe_ctx.GetProcessPtr(); local
1229 Process *process = exe_ctx.GetProcessPtr(); local
1286 Process *process = exe_ctx.GetProcessPtr(); local
1379 Process *process = exe_ctx.GetProcessPtr(); local
1441 Process *process = exe_ctx.GetProcessPtr(); local
1479 Process *process = exe_ctx.GetProcessPtr(); local
    [all...]
  /frameworks/base/core/java/android/net/http/
ConnectionThread.java 69 android.os.Process.setThreadPriority(
70 android.os.Process.THREAD_PRIORITY_DEFAULT +
71 android.os.Process.THREAD_PRIORITY_LESS_FAVORABLE);
87 /* Get a request to process */
  /frameworks/volley/src/com/android/volley/
CacheDispatcher.java 19 import android.os.Process;
81 Process.setThreadPriority(Process.THREAD_PRIORITY_BACKGROUND);
NetworkDispatcher.java 22 import android.os.Process;
83 Process.setThreadPriority(Process.THREAD_PRIORITY_BACKGROUND);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
SystemBroadcastReceiver.java 22 import android.os.Process;
86 // The process that hosts this broadcast receiver is invoked and remains alive even after
89 // There is no good reason to keep the process alive if this IME isn't a current IME.
98 final int myPid = Process.myPid();
99 Log.i(TAG, "Killing my process: pid=" + myPid);
100 Process.killProcess(myPid);
  /external/chromium_org/ash/accelerators/
focus_manager_factory.cc 27 return controller->Process(accelerator);
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/opentype/
OpenTypeSanitizer.cpp 62 if (!ots::Process(&output, reinterpret_cast<const uint8_t*>(m_buffer->data()), m_buffer->size()))
  /external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/
normal.h 53 int Process(const int16_t* input, size_t length,
  /external/chromium_org/third_party/webrtc/system_wrappers/source/
event_posix.h 46 bool Process();
  /external/chromium_org/third_party/webrtc/video_engine/
vie_sync_module.h 49 virtual int32_t Process();
  /external/chromium_org/third_party/webrtc/voice_engine/test/auto_test/fakes/
fake_external_transport.h 33 bool Process();
fake_media_process.h 18 virtual void Process(int channel,
  /external/chromium_org/ui/base/accelerators/
accelerator_manager.h 63 bool Process(const Accelerator& accelerator);

Completed in 1334 milliseconds

1 2 34 5 6 7 8 91011>>