HomeSort by relevance Sort by last modified time
    Searched defs:Process (Results 226 - 250 of 342) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/services/core/java/com/android/server/
Watchdog.java 39 import android.os.Process;
56 /** This class calls its monitor every minute. Killing this process if they don't return **/
228 * there is a binder thread available to process in coming IPCs to make sure other processes
407 int[] nativePids = Process.getPidsForCommands(NATIVE_STACKS_OF_INTEREST);
478 pids.add(Process.myPid());
497 // First collect stack traces from all threads of the system process.
498 // Then kill this process so that the system will restart.
502 pids.add(Process.myPid());
539 Binder.setDumpDisabled("Service dumps disabled due to hung system process.");
551 // Only kill the process if the debugger is not attached
    [all...]
  /frameworks/base/services/tests/servicestests/src/com/android/server/am/
ActivityManagerServiceTest.java 62 import android.os.Process;
243 // of the process state.
358 * This test verifies that process state changes are dispatched to observers based on the
363 when(mAppOpsService.noteOperation(AppOpsManager.OP_GET_USAGE_STATS, Process.myUid(), null))
483 * This test verifies that process state changes are dispatched to observers only when they
506 // First process state message is always delivered regardless of whether the process state
515 // Previous process state change is below cutpoint (PROCESS_STATE_SERVICE) and
516 // the current process state change is also below cutpoint, so no callback will be invoked.
522 // Previous process state change is below cutpoint (PROCESS_STATE_SERVICE) an
    [all...]
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
VoicemailProviderTest.java 29 import android.os.Process;
216 mPackageManager.removePackage(Process.myUid());
308 mPackageManager.removePackage(Process.myUid());
335 mPackageManager.removePackage(Process.myUid());
339 mPackageManager.addPackage(Process.myUid(), mActor.packageName);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
ocmm.h 297 virtual HRESULT WINAPI Process(IStream *pStream) = 0;
307 HRESULT (WINAPI *Process)(IImageDecodeFilter *This,IStream *pStream);
319 #define IImageDecodeFilter_Process(This,pStream) (This)->lpVtbl->Process(This,pStream)
  /frameworks/base/services/core/java/com/android/server/media/
MediaSessionRecord.java 48 import android.os.Process;
240 * the system service instead of the app process. This helps sessions to distinguish
    [all...]
  /frameworks/base/core/java/android/os/
StrictMode.java 135 * network accesses. While it does propagate its state across process boundaries when doing {@link
225 // Byte 2: Process-policy
299 * offending stack traces to the caller to ultimately handle in the originating process.
439 * severe (logging before process death, for example). There's currently no mechanism to choose
609 * Crash the whole process on violation. This penalty runs at the end of all enabled
610 * penalties so you'll still get see logging or other violations before the process
621 * Crash the whole process on any network usage. Unlike {@link #penaltyDeath}, this
705 * {@link StrictMode} policy applied to all threads in the virtual machine's process.
817 * you should apply this policy as early as possible after process creation.
    [all...]
  /art/runtime/gc/collector/
concurrent_copying.cc 173 // Gray dirty immune objects concurrently to reduce GC pause times. We re-process gray cards in
780 // Concurrently mark roots that are guarded by read barriers and process the mark stack.
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
MediaController2Test.java 52 import android.os.Process;
107 if (Process.myUid() == controller.getUid()) {
244 assertEquals(Process.myUid(), sessionActivity.getCreatorUid());
377 if (Process.myUid() == controller.getUid()) {
    [all...]
MediaSession2Test.java 49 import android.os.Process;
97 if (Process.myUid() == controller.getUid()) {
669 assertEquals(Process.myUid(), controller.getUid());
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_multiprocessing.py 179 p = self.Process(
220 p = self.Process(target=self._test_terminate)
253 p = self.Process(target=time.sleep, args=(DELTA,))
268 p = cls.Process(
298 class _UpperCaser(multiprocessing.Process):
301 multiprocessing.Process.__init__(self)
365 proc = self.Process(
432 proc = self.Process(
484 # process cannot shutdown until the feeder thread has finished
489 # thread for a forked process if the original process had its
    [all...]
  /external/dng_sdk/source/
dng_read_image.cpp     [all...]
  /external/lzma/CPP/7zip/UI/FileManager/
ProgressDialog2.cpp 1266 void CProgressThreadVirt::Process()
  /external/python/cpython2/Lib/test/
test_multiprocessing.py 211 p = self.Process(
252 p = self.Process(target=self._test_terminate)
285 p = self.Process(target=time.sleep, args=(DELTA,))
301 p = cls.Process(
341 p = self.Process(target=self._test_sys_exit, args=(reason, testfn))
351 p = self.Process(target=sys.exit, args=(reason,))
361 class _UpperCaser(multiprocessing.Process):
364 multiprocessing.Process.__init__(self)
429 proc = self.Process(
496 proc = self.Process(
    [all...]
  /external/v8/src/compiler/
escape-analysis.cc 92 void Process(Node* node);
643 Process(node);
676 void EscapeStatusAnalysis::Process(Node* node) {
1001 if (Process(node)) {
    [all...]
  /frameworks/base/core/java/android/content/pm/
LauncherApps.java 360 * When a given launcher application wants to update its cache, such as when its process
487 result.add(android.os.Process.myUserHandle());
    [all...]
  /frameworks/base/services/core/java/com/android/server/am/
AppErrors.java 39 import android.os.Process;
201 pw.print(" Process "); pw.print(pname);
232 pw.print(" Bad process "); pw.print(pname);
347 // Figure out which process to kill. We don't trust that initialPid
429 * If this process was running instrumentation, finish now - it will be handled in
445 // If we can't identify the process or it's already exceeded its crash quota,
559 Process.killProcess(pid);
599 * Generate a process error record, suitable for attachment to a ProcessRecord.
712 // The process crashed again very quickly. If it was a bound foreground service, let's
713 // try to restart again in a while, otherwise the process loses
    [all...]
  /frameworks/support/media/src/androidTest/java/androidx/media/
MediaSession2Test.java 37 import android.os.Process;
92 if (Process.myUid() == controller.getUid()) {
    [all...]
MediaController2Test.java 36 import android.os.Process;
101 if (Process.myUid() == controller.getUid()) {
287 assertEquals(Process.myUid(), sessionActivity.getCreatorUid());
434 if (Process.myUid() == controller.getUid()) {
    [all...]
  /packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
TelecomSystemTest.java 56 import android.os.Process;
500 mPhoneAccountA0.getAccountHandle(), Process.myUserHandle());
557 connectionServiceFixture, Process.myUserHandle(), VideoProfile.STATE_AUDIO_ONLY);
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_multiprocessing.py 213 p = self.Process(
254 p = self.Process(target=self._test_terminate)
287 p = self.Process(target=time.sleep, args=(DELTA,))
303 p = cls.Process(
343 p = self.Process(target=self._test_sys_exit, args=(reason, testfn))
353 p = self.Process(target=sys.exit, args=(reason,))
363 class _UpperCaser(multiprocessing.Process):
366 multiprocessing.Process.__init__(self)
431 proc = self.Process(
498 proc = self.Process(
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_multiprocessing.py 213 p = self.Process(
254 p = self.Process(target=self._test_terminate)
287 p = self.Process(target=time.sleep, args=(DELTA,))
303 p = cls.Process(
343 p = self.Process(target=self._test_sys_exit, args=(reason, testfn))
353 p = self.Process(target=sys.exit, args=(reason,))
363 class _UpperCaser(multiprocessing.Process):
366 multiprocessing.Process.__init__(self)
431 proc = self.Process(
498 proc = self.Process(
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_multiprocessing.py 213 p = self.Process(
254 p = self.Process(target=self._test_terminate)
287 p = self.Process(target=time.sleep, args=(DELTA,))
303 p = cls.Process(
343 p = self.Process(target=self._test_sys_exit, args=(reason, testfn))
353 p = self.Process(target=sys.exit, args=(reason,))
363 class _UpperCaser(multiprocessing.Process):
366 multiprocessing.Process.__init__(self)
431 proc = self.Process(
498 proc = self.Process(
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_multiprocessing.py 213 p = self.Process(
254 p = self.Process(target=self._test_terminate)
287 p = self.Process(target=time.sleep, args=(DELTA,))
303 p = cls.Process(
343 p = self.Process(target=self._test_sys_exit, args=(reason, testfn))
353 p = self.Process(target=sys.exit, args=(reason,))
363 class _UpperCaser(multiprocessing.Process):
366 multiprocessing.Process.__init__(self)
431 proc = self.Process(
498 proc = self.Process(
    [all...]
  /external/tensorflow/tensorflow/core/common_runtime/
executor.cc 355 // Process all Nodes in the current graph, attempting to infer the
    [all...]
  /frameworks/base/services/core/java/com/android/server/connectivity/
Vpn.java 75 import android.os.Process;
603 idleController.addPowerSaveTempWhitelistApp(Process.myUid(), alwaysOnPackage,
793 return Process.myUid();
    [all...]

Completed in 1172 milliseconds

1 2 3 4 5 6 7 8 91011>>