HomeSort by relevance Sort by last modified time
    Searched full:suspended (Results 1 - 25 of 645) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium-trace/catapult/third_party/vinn/third_party/parse5/lib/jsdom/
parsing_unit.js 5 this.suspended = false;
11 if (this.suspended && suspend)
12 throw new Error('parse5: Parser was already suspended. Please, check your control flow logic.');
14 else if (!this.suspended && !suspend)
21 this.suspended = this._stateGuard(true);
27 this.suspended = this._stateGuard(false);
  /cts/hostsidetests/devicepolicy/app/IntentSender/src/com/android/cts/intent/sender/
SuspendPackageTest.java 40 * Verify the package is suspended by trying start the activity inside it. If the package
41 * is not suspended, the target activity will return the result.
43 private void assertPackageSuspended(boolean suspended) throws Exception {
47 if (suspended) {
52 // No matter it is suspended or not, we should able to resolve the activity.
  /external/v8/test/mjsunit/es6/
generators-mirror.js 54 if (status === 'suspended') {
83 TestGeneratorMirror(iter, 'suspended', 7, 19);
86 TestGeneratorMirror(iter, 'suspended', 9, 2);
89 TestGeneratorMirror(iter, 'suspended', 11, 2);
103 TestGeneratorMirror(iter2, 'suspended', 7, 19, obj);
106 TestGeneratorMirror(iter2, 'suspended', 9, 2, obj);
109 TestGeneratorMirror(iter2, 'suspended', 11, 2, obj);
  /cts/tests/tests/net/src/android/net/cts/
NetworkInfo_StateTest.java 29 assertEquals(State.SUSPENDED, State.valueOf("SUSPENDED"));
38 assertEquals(State.SUSPENDED, expected[2]);
NetworkInfo_DetailedStateTest.java 35 assertEquals(DetailedState.SUSPENDED, DetailedState.valueOf("SUSPENDED"));
47 assertEquals(DetailedState.SUSPENDED, expected[6]);
  /system/update_engine/common/
action_processor.cc 60 << (suspended_ ? " while suspended" : "");
72 // No current_action_ when not suspended means that the action processor was
88 LOG(WARNING) << "Called ResumeProcessing while not suspended.";
93 // The current_action_ did not call ActionComplete while suspended, so we
98 // The last action called ActionComplete while suspended, so there is
118 << (suspended_ ? " while suspended" : "")
125 // If an action finished while suspended we don't start the next action (or
action_processor.h 61 // ResumeProcessing() is called on this class to continue. While suspended,
63 // processing is suspended or not running this method performs no action.
66 // Resume the suspended processing. If the ActionProcessor is not suspended
104 // The ErrorCode reported by an action that was suspended but finished while
105 // being suspended. This error code is stored here to be reported back to the
109 // Whether the action processor is or should be suspended.
  /external/opencv3/3rdparty/libjpeg/
jcmainct.c 34 boolean suspended; /* remember if we suspended output */ member in struct:__anon20926
80 mainp->suspended = FALSE;
143 if (! mainp->suspended) {
145 mainp->suspended = TRUE;
150 * call suspended; then mark the main buffer empty.
152 if (mainp->suspended) {
154 mainp->suspended = FALSE;
219 if (! mainp->suspended) {
221 mainp->suspended = TRUE
    [all...]
  /external/pdfium/third_party/libjpeg/
fpdfapi_jcmainct.c 33 boolean suspended; /* remember if we suspended output */ member in struct:__anon22201
79 main->suspended = FALSE;
142 if (! main->suspended) {
144 main->suspended = TRUE;
149 * call suspended; then mark the main buffer empty.
151 if (main->suspended) {
153 main->suspended = FALSE;
216 if (! main->suspended) {
218 main->suspended = TRUE
    [all...]
  /external/autotest/server/site_tests/network_WiFi_ReconnectInDarkResume/
control.DisconnectAfterSuspendDiffAP 17 disconnects while suspended, successfully reconnects to a preferred network
18 that later appears while it is still suspended. In this test, the preferred
28 5) AP 2 is brought down, disconnecting the DUT from it while suspended
control.DisconnectAfterSuspendSameAP 17 disconnects while suspended, successfully reconnects to a preferred network
18 that later appears while it is still suspended. In this test, the preferred
28 5) AP 2 is brought down, disconnecting the DUT from it while suspended
  /external/autotest/server/site_tests/network_WiFi_RoamSuspend/
control 12 connected AP) when the previous AP goes away while the DUT is suspended.
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/VirtualMachine/
ResumeTest.java 64 * ThreadReference.Status command that all debuggee tested threads are suspended.
80 // Check all threads are suspended now.
81 logWriter.println("\n==> Check that all tested threads are suspended " +
88 // Check all threads are NOT suspended anymore.
110 * tested threads are suspended.
112 * that all debuggee tested threads are still suspended.
128 // Check all threads are suspended now.
129 logWriter.println("\n==> Check that all tested threads are suspended " +
136 // Check all threads are still suspended.
138 "suspended after another VirtualMachine.Suspend command...")
    [all...]
  /external/autotest/server/site_tests/power_USBHotplugInSuspend/
control 19 is suspended. The DUT is suspended using the client test power_KernelSuspend.
  /external/libjpeg-turbo/
jcmainct.c 27 boolean suspended; /* remember if we suspended output */ member in struct:__anon15819
64 main_ptr->suspended = FALSE;
106 if (! main_ptr->suspended) {
108 main_ptr->suspended = TRUE;
113 * call suspended; then mark the main buffer empty.
115 if (main_ptr->suspended) {
117 main_ptr->suspended = FALSE;
  /frameworks/base/core/java/android/app/admin/
DevicePolicyManagerInternal.java 84 * suspended by the admin. This assumes that {@param packageName} is suspended by the
85 * device/profile owner. The caller should check if the package is suspended or not.
89 * @param packageName The package that is suspended
90 * @param userId The user having the suspended package.
  /system/update_engine/
service_delegate_android_interface.h 51 // it was suspended. In case of failure, it returns false and sets |error|
55 // Resumes an update suspended with SuspendUpdate(). The update can't be
56 // suspended after it finished and this method will fail in that case.
58 // that there was a suspended update. In case of error, returns false and sets
62 // Cancel the ongoing update. The update could be running or suspended, but it
  /hardware/intel/img/psb_video/src/
object_heap.c 39 #define SUSPENDED -3
162 if ((obj->next_free == ALLOCATED) || (obj->next_free == SUSPENDED)) {
182 ASSERT((obj->next_free == ALLOCATED) || (obj->next_free == SUSPENDED));
200 ASSERT(obj->next_free != SUSPENDED);
212 * Suspended objects can not be looked up
218 obj->next_free = SUSPENDED;
220 ASSERT(obj->next_free == SUSPENDED);
  /system/core/crash_reporter/
unclean_shutdown_collector.cc 27 // Presence of this file indicates that the system was suspended
86 // Check for case of battery running out while suspended.
88 LOG(INFO) << "Unclean shutdown occurred while suspended. Not counting "
  /development/samples/browseable/BatchStepSensor/
_index.jd 17 batched sensors can be used in the background (when the CPU is suspended), which
  /external/autotest/client/site_tests/power_Resume/
control 19 ram. It will then calculate how many seconds the system was suspended, and
  /external/autotest/server/site_tests/display_SuspendStress/
control.extended_10min 19 repeatedly suspended and resumed in extended mode.
control.extended_30min 19 repeatedly suspended and resumed in extended mode.
control.mirrored_10min 19 repeatedly suspended and resumed in mirrored mode.
control.mirrored_30min 19 repeatedly suspended and resumed in mirrored mode.

Completed in 403 milliseconds

1 2 3 4 5 6 7 8 91011>>