| /frameworks/compile/libbcc/tests/debuginfo/target-tests/driver-int-param/ |
| ACTIVITY.java.template | 38 android.os.Process.killProcess(android.os.Process.myPid());
|
| /frameworks/compile/libbcc/tests/debuginfo/target-tests/driver-simple-exit/ |
| ACTIVITY.java.template | 38 android.os.Process.killProcess(android.os.Process.myPid());
|
| /libcore/luni/src/main/java/java/lang/ |
| Process.java | 24 * Represents an external process. Enables writing to, reading from, destroying, 25 * and waiting for the external process, as well as querying its exit value. Use 28 * <p>The child process writes its output to two streams, {@code out} and 29 * {@code err}. These streams should be read by the parent process using {@link 31 * streams are not read, the target process may block while it awaits buffer 37 * to avoid blocking the target process. 39 * <p>Running processes hold resources. When a process is no longer used, the 40 * process should be closed by calling {@link #destroy}. This will kill the 41 * process and release the resources that it holds. 45 * Process process = new ProcessBuilder( [all...] |
| /external/valgrind/main/none/tests/x86/ |
| int.stderr.exp | 3 Process terminating with default action of signal 11 (SIGSEGV)
|
| /frameworks/base/services/core/java/com/android/server/ |
| ServiceThread.java | 20 import android.os.Process; 39 Process.setCanSelfBackground(false);
|
| /external/chromium_org/chrome/browser/safe_browsing/ |
| environment_data_collection.cc | 16 // Populates |process| with platform-specific data related to the chrome browser 17 // process. 19 ClientIncidentReport_EnvironmentData_Process* process); 26 typedef ClientIncidentReport_EnvironmentData_Process Process; 29 return Process::CHANNEL_CANARY; 31 return Process::CHANNEL_DEV; 33 return Process::CHANNEL_BETA; 35 return Process::CHANNEL_STABLE; 37 return Process::CHANNEL_UNKNOWN; 41 // Populates |process| with data related to the chrome browser process [all...] |
| /external/chromium_org/third_party/webrtc/video_engine/ |
| call_stats_unittest.cc | 53 call_stats_->Process(); 60 call_stats_->Process(); 75 call_stats_->Process(); 81 call_stats_->Process(); 88 call_stats_->Process(); 94 call_stats_->Process(); 120 call_stats_->Process(); 131 call_stats_->Process(); 141 call_stats_->Process(); 158 call_stats_->Process(); [all...] |
| /frameworks/base/core/java/android/os/ |
| UserHandle.java | 47 * user, but if this is calling from a user process then we will send it 52 * user, but if this is calling from a user process then we will send it 100 return appId >= Process.FIRST_ISOLATED_UID && appId <= Process.LAST_ISOLATED_UID; 110 return appId >= Process.FIRST_APPLICATION_UID && appId <= Process.LAST_APPLICATION_UID; 170 return getUid(userId, Process.SHARED_USER_GID); 178 return Process.FIRST_SHARED_APPLICATION_GID + (id % PER_USER_RANGE) 179 - Process.FIRST_APPLICATION_UID; 188 if (uid < Process.FIRST_APPLICATION_UID) [all...] |
| HandlerThread.java | 30 mPriority = Process.THREAD_PRIORITY_DEFAULT; 37 * {@link android.os.Process} and not from java.lang.Thread. 53 mTid = Process.myTid(); 59 Process.setThreadPriority(mPriority); 144 * Returns the identifier of this thread. See Process.myTid().
|
| /packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/util/ |
| PriorityThreadFactoryTest.java | 32 priorityTest(android.os.Process.THREAD_PRIORITY_BACKGROUND); 33 priorityTest(android.os.Process.THREAD_PRIORITY_DEFAULT); 34 priorityTest(android.os.Process.THREAD_PRIORITY_FOREGROUND); 60 int tid = android.os.Process.myTid(); 61 mPriority = new Integer(android.os.Process.getThreadPriority(tid));
|
| /frameworks/base/core/tests/coretests/src/android/os/ |
| BinderThreadPriorityService.java | 34 return Process.getThreadPriority(Process.myTid()); 50 Process.setThreadPriority(priority);
|
| HandlerThreadTest.java | 23 import android.os.Process; 41 mLooperTid = Process.myTid(); 68 // Make sure that the process was set. 71 assertNotSame(Process.myTid(), mLooperTid); 77 assertEquals(mLooperTid, Process.myTid());
|
| /frameworks/base/tests/permission/src/com/android/framework/permission/tests/ |
| VibratorServicePermissionTest.java | 24 import android.os.Process; 51 mVibratorService.vibrate(Process.myUid(), null, 2000, AudioManager.STREAM_ALARM, 68 mVibratorService.vibratePattern(Process.myUid(), null, new long[] {0}, 0,
|
| /frameworks/base/keystore/tests/src/android/security/ |
| KeyStoreTest.java | 20 import android.os.Process; 164 assertFalse(mKeyStore.contains(TEST_KEYNAME, Process.WIFI_UID)); 165 assertFalse(mKeyStore.put(TEST_KEYNAME, TEST_KEYVALUE, Process.WIFI_UID, 167 assertFalse(mKeyStore.contains(TEST_KEYNAME, Process.WIFI_UID)); 169 assertTrue(mKeyStore.put(TEST_KEYNAME, TEST_KEYVALUE, Process.WIFI_UID, 171 assertTrue(mKeyStore.contains(TEST_KEYNAME, Process.WIFI_UID)); 175 assertFalse(mKeyStore.contains(TEST_KEYNAME, Process.BLUETOOTH_UID)); 176 assertFalse(mKeyStore.put(TEST_KEYNAME, TEST_KEYVALUE, Process.BLUETOOTH_UID, 178 assertFalse(mKeyStore.contains(TEST_KEYNAME, Process.BLUETOOTH_UID)); 180 assertFalse(mKeyStore.put(TEST_KEYNAME, TEST_KEYVALUE, Process.BLUETOOTH_UID [all...] |
| /external/deqp/execserver/ |
| xsWin32TestProcess.hpp | 132 // incompatible with deFile. Thus separate Process implementation is used for now. 133 class Process 136 Process (void); 137 ~Process (void); 153 Process (const Process& other); 154 Process& operator= (const Process& other); 199 win32::Process* m_process;
|
| /external/lldb/source/Plugins/DynamicLoader/Static/ |
| DynamicLoaderStatic.h | 26 #include "lldb/Target/Process.h" 47 CreateInstance (lldb_private::Process *process, bool force); 49 DynamicLoaderStatic (lldb_private::Process *process); 54 /// Called after attaching a process. 57 /// attaching to a process.
|
| /external/lldb/source/Plugins/Process/POSIX/ |
| Makefile | 1 ##===- source/Plugins/Process/POSIX/Makefile ---------------*- Makefile -*-===## 20 CPPFLAGS += -I$(PROJ_SRC_DIR)/$(LLDB_LEVEL)/source/Plugins/Process/Linux 29 CPPFLAGS += -I$(PROJ_SRC_DIR)/$(LLDB_LEVEL)/source/Plugins/Process/FreeBSD
|
| /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/ |
| ProcessTest.java | 17 int pid = android.os.Process.myPid(); 26 assertThat(android.os.Process.myPid(), equalTo(47));
|
| /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/util/ |
| PriorityThreadFactory.java | 19 import android.os.Process; 43 Process.setThreadPriority(mPriority);
|
| /external/chromium_org/ash/accelerators/ |
| accelerator_controller_unittest.cc | 289 EXPECT_TRUE(GetController()->Process(press)); 290 EXPECT_FALSE(GetController()->Process(release)); 293 EXPECT_TRUE(GetController()->Process(press)); // second press before timer. 294 EXPECT_FALSE(GetController()->Process(release)); 311 EXPECT_TRUE(GetController()->Process(press)); 312 EXPECT_FALSE(GetController()->Process(release)); 342 EXPECT_TRUE(GetController()->Process(accelerator_a)); 355 EXPECT_TRUE(GetController()->Process(accelerator_a)); 370 EXPECT_TRUE(GetController()->Process(accelerator_a)); 376 EXPECT_FALSE(GetController()->Process(accelerator_a)) [all...] |
| /external/chromium_org/third_party/webrtc/modules/audio_processing/ |
| typing_detection.h | 27 bool Process(bool key_pressed, bool vad_activity); 46 // Counter since last time the detection status reported by Process() was 51 // |report_detection_update_period_| call to Process(). 77 // by Process(). This inertia added to the algorithm is usually desirable and 80 // If set to 1, each call to Process() will return the detection status for 82 // If set to N (where N > 1), the detection status returned from Process() 83 // will remain the same until Process() has been called N times. Then, if none 84 // of the last N calls to Process() has detected typing for each respective 85 // 10 ms slot, Process() will return false. If at least one of the last N 86 // calls has detected typing, Process() will return true. And that returne [all...] |
| /external/chromium_org/third_party/webrtc/modules/interface/ |
| module.h | 27 // thread to call Process. 30 // Process any pending tasks such as timeouts. 31 virtual int32_t Process() = 0;
|
| /external/lldb/include/lldb/Target/ |
| LanguageRuntime.h | 36 FindPlugin (Process *process, lldb::LanguageType language); 88 Process * 105 LanguageRuntime(Process *process); 106 Process *m_process;
|
| /external/webrtc/src/modules/interface/ |
| module.h | 26 // thread to call Process. 29 // Process any pending tasks such as timeouts. 30 virtual int32_t Process() = 0;
|
| /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
| mp_fork_bomb.py | 11 p = multiprocessing.Process(target=foo, args=(w,))
|