HomeSort by relevance Sort by last modified time
    Searched refs:resume (Results 226 - 250 of 666) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/StackFrame/
PopFrames002Test.java 161 logWriter.println("=> Resume debuggee");
162 debuggeeWrapper.vmMirror.resume();
171 logWriter.println("=> Resume debuggee");
172 debuggeeWrapper.vmMirror.resume();
255 logWriter.println("=> Resume debuggee");
256 debuggeeWrapper.vmMirror.resume();
265 logWriter.println("=> Resume debuggee");
266 debuggeeWrapper.vmMirror.resume();
428 logWriter.println("=> Resume debuggee");
429 debuggeeWrapper.vmMirror.resume();
    [all...]
  /frameworks/base/packages/MtpDocumentsProvider/src/com/android/mtp/
MtpDocumentsProvider.java 142 resume(); method
172 resume(); method
431 mRootScanner.resume().await();
435 // Resume document loader to remap disconnected document ID. Must be invoked after the
437 toolkit.mDocumentLoader.resume();
445 mRootScanner.resume();
478 mRootScanner.resume();
516 private void resume() { method in class:MtpDocumentsProvider
RootScanner.java 81 synchronized CountDownLatch resume() { method in class:RootScanner
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
CombinedEventsTest.java 174 logWriter.println("=> Resume debuggee");
175 debuggeeWrapper.vmMirror.resume();
284 logWriter.println("=> Resume debuggee");
285 debuggeeWrapper.vmMirror.resume();
311 logWriter.println("=> Resume debuggee");
312 debuggeeWrapper.vmMirror.resume();
429 logWriter.println("=> Resume debuggee");
430 debuggeeWrapper.vmMirror.resume();
525 logWriter.println("=> Resume debuggee");
526 debuggeeWrapper.vmMirror.resume();
    [all...]
ClassUnloadTest.java 126 logWriter.println("=> Resume debuggee on event");
127 debuggeeWrapper.resume();
  /frameworks/wilhelm/src/itf/
IObject.c 165 // Called by a worker thread to handle an asynchronous Object.Resume.
176 AsyncHook resume = clazz->mResume; local
186 if (NULL != resume) {
188 // Note that the mutex is locked on entry to and exit from the resume hook,
190 result = (*resume)(thiz, SL_BOOLEAN_TRUE);
236 // Reject redundant calls to Resume
255 // Engine was destroyed during resume, or insufficient memory
263 AsyncHook resume = clazz->mResume; local
264 // Note that the mutex is locked on entry to and exit from the resume hook,
266 result = (NULL != resume) ? (*resume)(thiz, SL_BOOLEAN_FALSE) : SL_RESULT_SUCCESS
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
AbstractGalleryActivity.java 208 getStateManager().resume();
209 getDataManager().resume();
214 mOrientationManager.resume();
OrientationManager.java 51 public void resume() { method in class:OrientationManager
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
DataManager.java 131 source.resume();
315 public void resume() { method in class:DataManager
318 source.resume();
  /device/asus/fugu/libaudio/
AudioStreamOut.h 45 status_t resume();
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/VirtualMachine/
Resume002Test.java 30 * JDWP Unit test for VirtualMachine.Resume command.
41 * This testcase exercises VirtualMachine.Resume command when some threads are suspended and
47 * <BR> Finally the test performs VirtualMachine.Resume command and checks all threads
67 // resume all suspended threads at once with a VirtualMachine.Resume command.
68 debuggeeWrapper.vmMirror.resume();
  /external/deqp/framework/platform/android/
tcuAndroidRenderActivity.hpp 127 void resume (void);
tcuAndroidRenderActivity.cpp 55 "RESUME",
117 void RenderThread::resume (void) function in class:tcu::Android::RenderThread
306 // Resume (or start) test execution
307 m_thread->resume();
  /external/libunwind/include/
libunwind-common.h.in 175 int (*resume) (unw_addr_space_t, unw_cursor_t *, void *);
216 #define unw_resume UNW_OBJ(resume)
libunwind-common.h 187 int (*resume) (unw_addr_space_t, unw_cursor_t *, void *); member in struct:unw_accessors
249 #define unw_resume UNW_OBJ(resume)
  /external/libunwind/src/arm/
Gresume.c 150 Debug (1, "refusing to resume execution at address 0\n");
156 return (*c->dwarf.as->acc.resume) (c->dwarf.as, (unw_cursor_t *) c,
  /external/libunwind/src/hppa/
Gresume.c 136 Debug (1, "refusing to resume execution at address 0\n");
143 return (*c->dwarf.as->acc.resume) (c->dwarf.as, (unw_cursor_t *) c,
  /frameworks/av/include/media/stagefright/
MediaCodecSource.h 98 void resume(int64_t skipFramesBeforeUs = -1ll);
  /packages/apps/Settings/src/com/android/settings/
AirplaneModeEnabler.java 75 public void resume() { method in class:AirplaneModeEnabler
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
ConversationCursorLoader.java 132 mConversationCursor.resume();
  /development/ndk/platforms/android-3/include/linux/
device.h 55 int (*resume)(struct device * dev); member in struct:bus_type
84 int (*resume) (struct device * dev); member in struct:device_driver
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
VideoViewTest.java 106 view.resume();
109 assertThat(shadowVideoView.getCurrentVideoState(), equalTo(ShadowVideoView.RESUME));
130 view.resume();
  /frameworks/base/media/jni/soundpool/
SoundPool.h 128 void resume();
172 void resume(int channelID);
  /packages/apps/Dialer/InCallUI/src/com/android/incallui/
VideoPauseController.java 29 * This class is responsible for generating video pause/resume requests when the InCall UI is sent
184 * call in dialing state, resume the new primary call.
200 // Send resume request for the active call, if user rejects incoming call, ends dialing
263 * Called when UI is brought to the foreground. Sends a session modification request to resume
302 * Sends Pause/Resume request.
305 * @param resume If true resume request will be sent, otherwise pause request.
307 private void sendRequest(Call call, boolean resume) {
313 if (resume) {
314 log("sending resume request, call=" + call)
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
AlbumSetSlotRenderer.java 225 public void resume() { method in class:AlbumSetSlotRenderer
226 mDataWindow.resume();

Completed in 738 milliseconds

1 2 3 4 5 6 7 8 91011>>