HomeSort by relevance Sort by last modified time
    Searched defs:WaitResult (Results 1 - 4 of 4) sorted by null

  /external/qemu/distrib/sdl-1.2.15/src/thread/win32/
win_ce_semaphore.c 138 DWORD WaitResult;
140 WaitResult = WaitForSingleObject (hSemCE->hMutex, dwMilliseconds);
141 if (WaitResult != WAIT_OBJECT_0 && WaitResult != WAIT_ABANDONED_0) return WaitResult;
157 WaitResult = WaitForSingleObject (hSemCE->hEvent, dwMilliseconds);
158 if (WaitResult != WAIT_OBJECT_0) return WaitResult;
169 WaitResult = WaitForSingleObject (hSemCE->hMutex, dwMilliseconds);
170 if (WaitResult != WAIT_OBJECT_0 && WaitResult != WAIT_ABANDONED_0) return WaitResult
    [all...]
  /external/chromium_org/chrome/browser/password_manager/
native_backend_gnome_x.cc 194 // a WaitResult() method should be called to wait for the result. Each instance
214 GnomeKeyringResult WaitResult();
218 GnomeKeyringResult WaitResult(PasswordFormList* forms);
377 GnomeKeyringResult GKRMethod::WaitResult() {
383 GnomeKeyringResult GKRMethod::WaitResult(PasswordFormList* forms) {
446 GnomeKeyringResult result = method.WaitResult();
471 GnomeKeyringResult result = method.WaitResult(&forms);
511 GnomeKeyringResult result = method.WaitResult(&forms);
556 GnomeKeyringResult result = method.WaitResult();
603 GnomeKeyringResult result = method.WaitResult(forms)
    [all...]
  /external/chromium/chrome/browser/password_manager/
native_backend_gnome_x.cc 242 // a WaitResult() method should be called to wait for the result. Each instance
268 GnomeKeyringResult WaitResult();
272 GnomeKeyringResult WaitResult(PasswordFormList* forms);
276 GnomeKeyringResult WaitResult(std::vector<std::string>* keyrings);
279 GnomeKeyringResult WaitResult(std::vector<guint>* item_ids);
282 GnomeKeyringResult WaitResult(PasswordForm** form);
285 GnomeKeyringResult WaitResult(string16* password);
486 GnomeKeyringResult GKRMethod::WaitResult() {
492 GnomeKeyringResult GKRMethod::WaitResult(PasswordFormList* forms) {
500 GnomeKeyringResult GKRMethod::WaitResult(std::vector<std::string>* keyrings)
    [all...]
  /frameworks/base/core/java/android/app/
IActivityManager.java 67 public WaitResult startActivityAndWait(IApplicationThread caller, String callingPackage,
467 public static class WaitResult implements Parcelable {
474 public WaitResult() {
491 public static final Parcelable.Creator<WaitResult> CREATOR
492 = new Parcelable.Creator<WaitResult>() {
494 public WaitResult createFromParcel(Parcel source) {
495 return new WaitResult(source);
499 public WaitResult[] newArray(int size) {
500 return new WaitResult[size];
504 private WaitResult(Parcel source)
    [all...]

Completed in 302 milliseconds