HomeSort by relevance Sort by last modified time
    Searched defs:Status (Results 101 - 125 of 325) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/smack/src/org/jivesoftware/smackx/workgroup/agent/
WorkgroupQueue.java 33 private Status status = Status.CLOSED; field in class:WorkgroupQueue
61 * Returns the status of the queue.
63 * @return the status of the queue.
65 public Status getStatus() {
66 return status;
69 void setStatus(Status status) {
70 this.status = status;
    [all...]
  /external/smack/src/org/jivesoftware/smackx/workgroup/packet/
QueueOverview.java 48 private WorkgroupQueue.Status status; field in class:QueueOverview
54 this.status = null;
81 public WorkgroupQueue.Status getStatus() {
82 return status;
85 void setStatus(WorkgroupQueue.Status status) {
86 this.status = status;
110 if (status != null) {
    [all...]
  /frameworks/av/media/libeffects/lvm/lib/Bundle/src/
LVM_Init.c 428 LVM_ReturnStatus_en Status = LVM_SUCCESS;
643 LVCS_ReturnStatus_en LVCS_Status; /* Function call status */
694 LVDBE_ReturnStatus_en LVDBE_Status; /* Function call status */
    [all...]
  /frameworks/base/libs/androidfw/
BackupData.cpp 200 BackupDataReader::Status()
  /frameworks/base/tools/layoutlib/bridge/src/android/animation/
AnimationThread.java 22 import com.android.ide.common.rendering.api.Result.Status;
164 mListener.done(Status.SUCCESS.createResult());
169 mListener.done(Status.ERROR_UNKNOWN.createResult("Error playing animation", throwable));
  /hardware/qcom/media/mm-core/omxcore/src/common/
qc_omx_core.c 822 OMX_BOOL Status = OMX_TRUE;
846 return Status;
  /hardware/qcom/media/mm-core/src/common/
qc_omx_core.c 807 OMX_BOOL Status = OMX_TRUE;
831 return Status;
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
VoicemailStatusTable.java 30 import android.provider.VoicemailContract.Status;
36 * Implementation of {@link VoicemailTable.Delegate} for the voicemail status table.
40 .add(Status._ID)
41 .add(Status.CONFIGURATION_STATE)
42 .add(Status.DATA_CHANNEL_STATE)
43 .add(Status.NOTIFICATION_CHANNEL_STATE)
44 .add(Status.SETTINGS_URI)
45 .add(Status.SOURCE_PACKAGE)
46 .add(Status.VOICEMAIL_ACCESS_URI)
96 c.setNotificationUri(mContext.getContentResolver(), Status.CONTENT_URI)
    [all...]
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
VoicemailCleanupServiceTest.java 24 import android.provider.VoicemailContract.Status;
85 mResolver.insert(Status.buildSourceUri(sourcePackage), values);
99 Status.buildSourceUri(sourcePackage), null, null, null, null);
108 Status.buildSourceUri(sourcePackage), null, null, null, null);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/mtd/
nftl-user.h 15 __u8 Status;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/mtd/
nftl-user.h 15 __u8 Status;
  /bionic/libc/kernel/uapi/mtd/
inftl-user.h 29 __u8 Status;
  /developers/build/prebuilts/gradle/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/
AsyncTask.java 242 private volatile Status mStatus = Status.PENDING;
275 * Indicates the current status of the task. Each status will be set only once
278 public enum Status {
350 * Returns the current status of this task.
352 * @return The current status.
354 public final Status getStatus() {
554 * {@link AsyncTask.Status#RUNNING} or {@link AsyncTask.Status#FINISHED}
    [all...]
  /developers/samples/android/ui/graphics/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/
AsyncTask.java 242 private volatile Status mStatus = Status.PENDING;
275 * Indicates the current status of the task. Each status will be set only once
278 public enum Status {
350 * Returns the current status of this task.
352 * @return The current status.
354 public final Status getStatus() {
554 * {@link AsyncTask.Status#RUNNING} or {@link AsyncTask.Status#FINISHED}
    [all...]
  /development/samples/browseable/DisplayingBitmaps/src/com.example.android.displayingbitmaps/util/
AsyncTask.java 242 private volatile Status mStatus = Status.PENDING;
275 * Indicates the current status of the task. Each status will be set only once
278 public enum Status {
350 * Returns the current status of this task.
352 * @return The current status.
354 public final Status getStatus() {
554 * {@link AsyncTask.Status#RUNNING} or {@link AsyncTask.Status#FINISHED}
    [all...]
  /external/chromium_org/chrome/browser/chromeos/settings/
device_settings_service.h 51 // Indicates ownership status of the device.
61 // Status codes for Store().
62 enum Status {
78 // Indicates device ownership status changes.
140 // Returns the status generated by the last operation.
141 Status status() { function in class:chromeos::DeviceSettingsService
173 // Returns the ownership status. May return OWNERSHIP_UNKNOWN if the disk
177 // Determines the ownership status and reports the result to |callback|. This
217 // Updates status, policy data and owner key from a finished operation
    [all...]
  /external/chromium_org/chrome/browser/component_updater/
component_updater_service.h 101 enum Status { kOk, kReplaced, kInProgress, kError };
190 virtual Status Start() = 0;
194 virtual Status Stop() = 0;
198 virtual Status RegisterComponent(const CrxComponent& component) = 0;
246 virtual ComponentUpdateService::Status OnDemandUpdate(
  /external/chromium_org/chrome/browser/net/
network_stats.h 58 enum Status { // Used in HISTOGRAM_ENUMERATION.
103 // client to stop, |TestPhaseComplete| will be called with a net status code.
186 bool TestPhaseComplete(Status status, int result);
199 // |test_type| is the current test_type to be recorded. |status| is the
200 // status of the current test.
227 void RecordNATTestReceivedHistograms(Status status);
231 void RecordPacketSizeTestReceivedHistograms(Status status);
    [all...]
  /external/chromium_org/chrome/renderer/printing/
mock_printer.h 61 enum Status {
90 Status GetPrinterStatus() const { return printer_status_; }
137 // The current status of this printer.
138 Status printer_status_;
  /external/chromium_org/content/browser/
power_save_blocker_x11.cc 9 // Xlib #defines Status, but we can't have that for some of our headers.
10 #ifdef Status
11 #undef Status
  /external/chromium_org/content/browser/service_worker/
service_worker_version.h 63 // Current version status; some of the status (e.g. INSTALLED and ACTIVE)
64 // should be persisted unlike running status.
65 enum Status {
104 return static_cast<RunningStatus>(embedded_worker_->status());
107 Status status() const { return status_; } function in class:content::ServiceWorkerVersion
109 // This sets the new status and also run status change callbacks
111 void SetStatus(Status status)
    [all...]
  /external/chromium_org/content/browser/speech/endpointer/
energy_endpointer.cc 371 EpStatus EnergyEndpointer::Status(int64* status_time) const {
  /external/chromium_org/content/child/webcrypto/
status.cc 5 #include "content/child/webcrypto/status.h"
11 bool Status::IsError() const {
15 bool Status::IsSuccess() const {
19 Status Status::Success() {
20 return Status(TYPE_SUCCESS);
23 Status Status::OperationError() {
24 return Status(blink::WebCryptoErrorTypeOperation, "");
27 Status Status::DataError()
    [all...]
  /external/chromium_org/content/renderer/media/
buffered_resource_loader.h 47 // Status codes for start/read operations on BufferedResourceLoader.
48 enum Status {
100 typedef base::Callback<void(Status)> StartCB;
117 // The callback will contain the number of bytes read iff the status is kOk,
122 typedef base::Callback<void(Status, int)> ReadCB;
240 void DoneRead(Status status, int bytes_read);
243 void DoneStart(Status status);
  /external/chromium_org/media/filters/
chunk_demuxer.h 134 enum Status {
200 Status AddId(const std::string& id, const std::string& type,
261 void MarkEndOfStream(PipelineStatus status);

Completed in 1128 milliseconds

1 2 3 45 6 7 8 91011>>