HomeSort by relevance Sort by last modified time
    Searched refs:Status (Results 451 - 475 of 1105) sorted by null

<<11121314151617181920>>

  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
AsyncTaskTest.java 116 assertThat(asyncTask.getStatus(), is(AsyncTask.Status.PENDING));
118 assertThat(asyncTask.getStatus(), is(AsyncTask.Status.RUNNING));
120 assertThat(asyncTask.getStatus(), is(AsyncTask.Status.FINISHED));
  /external/smack/src/org/jivesoftware/smackx/packet/
AdHocCommandData.java 59 /* Current execution status */
60 private AdHocCommand.Status status; field in class:AdHocCommandData
81 if (status != null) {
82 buf.append(" status=\"").append(status).append("\"");
215 * Returns the status of the execution.
217 * @return the status.
219 public AdHocCommand.Status getStatus() {
220 return status;
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
ColumnDialog.java 21 import org.eclipse.core.runtime.Status;
98 IStatus status; local
102 status = new Status(IStatus.ERROR, AdtPlugin.PLUGIN_ID,
105 status = new Status(IStatus.OK, AdtPlugin.PLUGIN_ID, null);
107 updateStatus(status);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
ExportHelper.java 49 import org.eclipse.core.runtime.Status;
113 throw new CoreException(new Status(IStatus.ERROR, AdtPlugin.PLUGIN_ID,
142 throw new CoreException(new Status(IStatus.ERROR, AdtPlugin.PLUGIN_ID,
221 throw new CoreException(new Status(IStatus.ERROR, AdtPlugin.PLUGIN_ID,
301 throw new CoreException(new Status(IStatus.ERROR, AdtPlugin.PLUGIN_ID,
306 throw new CoreException(new Status(IStatus.ERROR, AdtPlugin.PLUGIN_ID,
313 throw new CoreException(new Status(IStatus.ERROR, AdtPlugin.PLUGIN_ID,
320 throw new CoreException(new Status(IStatus.ERROR, AdtPlugin.PLUGIN_ID,
323 throw new CoreException(new Status(IStatus.ERROR, AdtPlugin.PLUGIN_ID,
326 throw new CoreException(new Status(IStatus.ERROR, AdtPlugin.PLUGIN_ID
    [all...]
  /external/chromium_org/chrome/browser/chromeos/settings/
session_manager_operation.h 32 DeviceSettingsService::Status)> Callback;
79 // Reports the result status of the operation. Once this gets called, the
81 void ReportResult(DeviceSettingsService::Status status);
103 // Extracts status and device settings from the validator and reports them.
  /external/chromium_org/chrome/browser/sync/glue/
sync_backend_host_mock.cc 72 SyncBackendHost::Status SyncBackendHostMock::GetDetailedStatus() {
73 return SyncBackendHost::Status();
  /external/chromium_org/chrome/test/chromedriver/server/
http_handler.h 93 const Status& status,
98 const Status& status,
  /external/chromium_org/chromeos/dbus/
update_engine_client.cc 126 virtual Status GetLastStatus() OVERRIDE {
189 // Get update engine status for the initial status. Update engine won't
190 // send StatusUpdate signal unless there is a status change. If chrome
191 // crashes after UPDATE_STATUS_UPDATED_NEED_REBOOT status is set,
192 // restarted chrome would not get this status. See crbug.com/154104.
238 Status status; local
239 if (!(reader.PopInt64(&status.last_checked_time) &&
240 reader.PopDouble(&status.download_progress) &
305 Status status; local
    [all...]
  /external/libnfc-nxp/src/
phFriNfc_SmtCrdFmt.h 226 /* Specifies the status of the different authentication handled in
484 * \param[in] Status The completion status of the lower layer (to be handled by the implementation of
488 * \note For general information about the completion routine interface please see \ref pphFriNfc_Cr_t . * The Different Status Values are as follows
492 NFCSTATUS Status);
495 NFCSTATUS Status);
  /external/qemu/distrib/sdl-1.2.15/src/video/x11/
SDL_x11sym.h 25 SDL_X11_SYM(Status,XAllocColor,(Display* a,Colormap b,XColor* c),(a,b,c),return)
68 SDL_X11_SYM(Status,XGetWindowAttributes,(Display* a,Window b,XWindowAttributes* c),(a,b,c),return)
71 SDL_X11_SYM(Status,XIconifyWindow,(Display* a,Window b,int c),(a,b,c),return)
72 SDL_X11_SYM(Status,XInitThreads,(void),(),return)
81 SDL_X11_SYM(Status,XMatchVisualInfo,(Display* a,int b,int c,int d,XVisualInfo* e),(a,b,c,d,e),return)
99 SDL_X11_SYM(Status,XSendEvent,(Display* a,Window b,Bool c,long d,XEvent* e),(a,b,c,d,e),return)
107 SDL_X11_SYM(Status,XSetWMProtocols,(Display* a,Window b,Atom* c,int d),(a,b,c,d),return)
112 SDL_X11_SYM(Status,XStringListToTextProperty,(char** a,int b,XTextProperty* c),(a,b,c),return)
133 SDL_X11_SYM(Status,_XReply,(Display* a,xReply* b,int c,Bool d),(a,b,c,d),return)
150 SDL_X11_SYM(int,Xutf8LookupString,(XIC a,XKeyPressedEvent* b,char* c,int d,KeySym* e,Status* f),(a,b,c,d,e,f),return
    [all...]
  /external/smack/src/org/jivesoftware/smackx/commands/
AdHocCommand.java 311 * Returns the status of the current stage.
313 * @return the current status.
315 public Status getStatus() {
351 * The status of the stage in the adhoc command.
353 public enum Status {
  /packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
FlipperDreamSettings.java 22 import android.os.AsyncTask.Status;
62 if (mLoadingTask != null && mLoadingTask.getStatus() != Status.FINISHED) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/templates/
ProjectContentsPage.java 26 import org.eclipse.core.runtime.Status;
304 IStatus status = validateProjectLocation(); local
306 setPageComplete(status == null || status.getSeverity() != IStatus.ERROR);
307 if (status != null) {
308 setMessage(status.getMessage(),
309 status.getSeverity() == IStatus.ERROR
326 return new Status(IStatus.ERROR, AdtPlugin.PLUGIN_ID, String.format(
342 return new Status(IStatus.ERROR, AdtPlugin.PLUGIN_ID,
349 return new Status(IStatus.ERROR, AdtPlugin.PLUGIN_ID
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.hierarchyviewer/src/com/android/ide/eclipse/hierarchyviewer/
HierarchyViewerPluginDirector.java 27 import org.eclipse.core.runtime.Status;
47 return Status.OK_STATUS;
  /external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
SSLEngineImplTest.java 416 assertEquals("Incorrect initial handshake status",
427 assertEquals("Incorrect initial handshake status",
434 assertEquals("Incorrect initial handshake status",
448 assertEquals("Incorrect status", result.getStatus(),
449 SSLEngineResult.Status.CLOSED);
450 assertEquals("Incorrect status", result.getHandshakeStatus(),
469 assertEquals("Incorrect status", result.getStatus(),
470 SSLEngineResult.Status.CLOSED);
471 assertEquals("Incorrect status", result.getHandshakeStatus(),
520 assertEquals("Unexpected status:"
756 SSLEngineResult.HandshakeStatus status; local
    [all...]
  /external/chromium_org/chrome/browser/component_updater/
component_updater_service.cc 125 : status(kNew),
226 virtual Status Start() OVERRIDE;
227 virtual Status Stop() OVERRIDE;
228 virtual Status RegisterComponent(const CrxComponent& component) OVERRIDE;
229 virtual Status OnDemandUpdate(const std::string& component_id) OVERRIDE;
275 Status OnDemandUpdateInternal(CrxUpdateItem* item);
300 void ChangeItemState(CrxUpdateItem* item, CrxUpdateItem::Status to);
302 size_t ChangeItemStatus(CrxUpdateItem::Status from,
303 CrxUpdateItem::Status to);
364 ComponentUpdateService::Status CrxUpdateService::Start()
1070 Status status = OnDemandUpdateInternal(item); local
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/examples/plus/
libjingleplus.cc 39 #include "talk/app/status.h"
258 void SendPresence(const buzz::Status & s) {
263 void SendDirectedPresence (const buzz::Jid &j, const buzz::Status &s) {
268 void SendDirectedMUCPresence(const buzz::Jid &j, const buzz::Status &s,
528 void OnStatusUpdateW (const buzz::Status &status) {
531 notify_->OnStatusUpdate(status);
534 void OnStatusUpdate (const buzz::Status &status) {
536 main_thread_->Post(this, MSG_STATUS_UPDATE, new SendPresenceData(status));
    [all...]
  /external/chromium/chrome/browser/chromeos/login/
ownership_service.cc 45 // Start getting ownership status.
76 OwnershipService::Status OwnershipService::GetStatus(bool blocking) {
77 Status status = OWNERSHIP_UNKNOWN; local
81 status = ownership_status_;
83 if (status != OWNERSHIP_UNKNOWN || !blocking)
84 return status;
86 // status is still unknown after constructing OwnershipService.
94 status = is_owned ? OWNERSHIP_TAKEN : OWNERSHIP_NONE;
95 SetStatus(status);
228 Status status = IsAlreadyOwned() ? OWNERSHIP_TAKEN : OWNERSHIP_NONE; local
    [all...]
  /external/chromium/chrome/browser/sync/
profile_sync_service_mock.h 60 browser_sync::SyncBackendHost::Status());
  /external/chromium/third_party/libjingle/source/talk/examples/call/
callclient.h 39 #include "talk/examples/call/status.h"
51 class Status;
73 buzz::Status::Show show;
74 std::string status; member in struct:RosterItem
140 void OnStatusUpdate(const buzz::Status& status);
144 void OnMucStatusUpdate(const buzz::Jid& jid, const buzz::MucStatus& status);
187 buzz::Status my_status_;
  /external/chromium_org/base/
tracked_objects.h 359 enum Status {
441 // If |status| is false, then status_ is set to DEACTIVATED.
442 // If |status| is true, then status_ is set to, PROFILING_ACTIVE, or
446 // status to PROFILING_CHILDREN_ACTIVE will only result in a status of
450 static bool InitializeAndSetTrackingStatus(Status status);
452 static Status status();
458 // For testing only, indicate if the status of parent-child tracking is turne
    [all...]
  /external/chromium_org/chrome/browser/chromeos/system/
automatic_reboot_manager.h 104 const UpdateEngineClient::Status& status) OVERRIDE;
130 // Called whenever the status of the criteria inhibiting reboots may have
  /external/chromium_org/chrome/browser/chromeos/
upgrade_detector_chromeos.cc 40 const UpdateEngineClient::Status& status) {
41 if (status.status != UpdateEngineClient::UPDATE_STATUS_UPDATED_NEED_REBOOT)
  /external/chromium_org/chrome/browser/local_discovery/
cloud_print_account_manager.cc 49 CloudPrintBaseApiFlow::Status status) {
cloud_print_printer_list.h 50 CloudPrintBaseApiFlow::Status status) OVERRIDE;

Completed in 488 milliseconds

<<11121314151617181920>>