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

1 2 3 4 56 7 8 91011>>

  /external/chromium_org/media/filters/
decoder_stream.h 39 typedef typename Decoder::Status DecoderStatus;
41 enum Status {
50 typedef base::Callback<void(Status, const scoped_refptr<Output>&)> ReadCB;
108 // called immediately after recieving the 'kConfigChanged' status from the
136 // Satisfy pending |read_cb_| with |status| and |output|.
137 void SatisfyRead(Status status,
148 void OnDecodeDone(int buffer_size, bool end_of_stream, DecoderStatus status);
157 void OnBufferReady(DemuxerStream::Status status,
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/loader/appcache/
ApplicationCacheHost.h 55 // The Status numeric values are specified in the HTML5 spec.
56 enum Status {
122 Status status() const;
140 virtual void notifyErrorEventListener(blink::WebApplicationCacheHost::ErrorReason, const blink::WebURL&, int status, const blink::WebString& message) OVERRIDE FINAL;
  /external/chromium_org/third_party/WebKit/public/platform/
WebApplicationCacheHost.h 51 // These values must match WebCore::ApplicationCacheHost::Status values
52 enum Status {
102 virtual Status status() { return Uncached; } function in class:blink::WebApplicationCacheHost
  /external/clang/include/clang/Basic/
VirtualFileSystem.h 31 /// \brief The result of a \p status operation.
32 class Status {
46 Status() : Type(llvm::sys::fs::file_type::status_error) {}
47 Status(const llvm::sys::fs::file_status &Status);
48 Status(StringRef Name, StringRef RealName, llvm::sys::fs::UniqueID UID,
57 /// @name Status interface from llvm::sys::fs
69 /// @name Status queries
72 bool equivalent(const Status &Other) const;
89 /// \brief Get the status of the file
    [all...]
  /external/clang/include/clang/Frontend/
VerifyDiagnosticConsumer.h 220 DirectiveStatus Status;
  /external/clang/lib/Serialization/
ModuleManager.cpp 93 vfs::Status Status;
95 if (!FileMgr.getNoncachedStatValue(TimestampFilename, Status))
97 Status.getLastModificationTime().toEpochTime();
  /external/kernel-headers/original/uapi/mtd/
inftl-user.h 20 __u8 Status;
  /external/libnfc-nxp/src/
phHal4Nfc_Reader.c 556 /*If status is anything other than NFCSTATUS_PENDING ,an error has
    [all...]
  /external/llvm/lib/Support/
MemoryBuffer.cpp 290 sys::fs::file_status Status;
291 if (sys::fs::status(FD, Status))
293 FileSize = Status.getSize();
322 sys::fs::file_status Status;
323 std::error_code EC = sys::fs::status(FD, Status);
330 sys::fs::file_type Type = Status.type();
335 FileSize = Status.getSize();
  /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 {
  /external/smack/src/org/jivesoftware/smackx/filetransfer/
FileTransfer.java 45 private Status status = Status.initial; field in class:FileTransfer
139 return status == Status.cancelled || status == Status.error
140 || status == Status.complete || status == Status.refused;
309 private String status; field in class:FileTransfer.Status
    [all...]
  /external/smack/src/org/jivesoftware/smackx/packet/
MUCUser.java 27 * or status codes scoped by the 'http://jabber.org/protocol/muc#user' namespace.
37 private Status status; field in class:MUCUser
115 * Returns the status which holds a code that assists in presenting notification messages.
117 * @return the status which holds a code that assists in presenting notification messages.
119 public Status getStatus() {
120 return status;
175 * Sets the status which holds a code that assists in presenting notification messages.
177 * @param status the status which holds a code that assists in presenting notificatio
    [all...]
  /frameworks/base/core/java/android/os/
AsyncTask.java 218 private volatile Status mStatus = Status.PENDING;
250 * Indicates the current status of the task. Each status will be set only once
253 public enum Status {
325 * Returns the current status of this task.
327 * @return The current status.
329 public final Status getStatus() {
529 * {@link AsyncTask.Status#RUNNING} or {@link AsyncTask.Status#FINISHED}
    [all...]
  /frameworks/base/core/java/android/provider/
VoicemailContract.java 37 * <li> Status table: This provides a way for the voicemail source application
39 * accessing this table are defined by the {@link Status} class.
212 /** Defines fields exposed through the /status path of this content provider. */
213 public static final class Status implements BaseColumns {
214 /** URI to insert/retrieve status of voicemail source. */
215 public static final Uri CONTENT_URI = Uri.parse("content://" + AUTHORITY + "/status");
217 public static final String DIR_TYPE = "vnd.android.cursor.dir/voicemail.source.status";
218 /** The MIME type for a single voicemail source status entry. */
219 public static final String ITEM_TYPE = "vnd.android.cursor.item/voicemail.source.status";
222 private Status() {
    [all...]
  /frameworks/base/wifi/java/android/net/wifi/p2p/nsd/
WifiP2pDnsSdServiceResponse.java 131 sbuf.append(" status:").append(Status.toString(mStatus));
147 * @param status status code.
152 protected WifiP2pDnsSdServiceResponse(int status,
155 status, tranId, dev, data);
289 * @param status status code.
295 static WifiP2pDnsSdServiceResponse newInstance(int status,
297 if (status != WifiP2pServiceResponse.Status.SUCCESS)
    [all...]
  /frameworks/compile/mclinker/include/mcld/LD/
Archive.h 102 enum Status
111 enum Status pStatus)
112 : name(pName), fileOffset(pOffset), status(pStatus)
121 enum Status status; member in struct:mcld::Archive::Symbol
204 enum Symbol::Status pStatus = Archive::Symbol::Unknown);
212 /// getSymbolStatus - get the status of a symbol
213 enum Symbol::Status getSymbolStatus(size_t pSymIdx) const;
215 /// setSymbolStatus - set the status of a symbol
216 void setSymbolStatus(size_t pSymIdx, enum Symbol::Status pStatus)
    [all...]
  /frameworks/opt/bluetooth/src/android/bluetooth/client/map/
BluetoothMapBmessage.java 35 Status mBmsgStatus;
49 public enum Status {
91 public Status getStatus() {
95 public BluetoothMapBmessage setStatus(Status status) {
96 mBmsgStatus = status;
159 json.put("status", mBmsgStatus);
  /frameworks/support/v4/java/android/support/v4/content/
ModernAsyncTask.java 81 private volatile Status mStatus = Status.PENDING;
86 * Indicates the current status of the task. Each status will be set only once
89 public enum Status {
164 * Returns the current status of this task.
166 * @return The current status.
168 public final Status getStatus() {
367 * {@link android.os.AsyncTask.Status#RUNNING} or
368 * {@link android.os.AsyncTask.Status#FINISHED}
    [all...]
  /hardware/ti/omap3/omx/system/src/openmax_il/omx_core/src/
OMX_Core.c 772 OMX_BOOL Status = OMX_FALSE;
774 Status = TIOMXConfigParser(aInputParameters, aOutputParameters);
776 return Status;
  /packages/apps/Contacts/src/com/android/contacts/list/
ProviderStatusWatcher.java 33 * A singleton that keeps track of the last known provider status.
44 * Callback interface invoked when the provider status changes.
50 public static class Status {
51 /** See {@link ProviderStatus#STATUS} */
52 public final int status; field in class:ProviderStatusWatcher.Status
57 public Status(int status, String data) {
58 this.status = status;
64 ProviderStatus.STATUS,
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/mtd/
inftl-user.h 20 __u8 Status;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/mtd/
inftl-user.h 20 __u8 Status;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
iisrsta.h 68 virtual HRESULT WINAPI Status(DWORD dwBufferSize,unsigned char *pbBuffer,DWORD *pdwMDRequiredBufferSize,DWORD *pdwNumServices) = 0;
84 HRESULT (WINAPI *Status)(IIisServiceControl *This,DWORD dwBufferSize,unsigned char *pbBuffer,DWORD *pdwMDRequiredBufferSize,DWORD *pdwNumServices);
102 #define IIisServiceControl_Status(This,dwBufferSize,pbBuffer,pdwMDRequiredBufferSize,pdwNumServices) (This)->lpVtbl->Status(This,dwBufferSize,pbBuffer,pdwMDRequiredBufferSize,pdwNumServices)
ntddpar.h 82 UCHAR Status;
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/widgets/
ImageCanvas.java 21 import org.eclipse.core.runtime.Status;
247 new Status(Status.ERROR, GlTracePlugin.PLUGIN_ID, e.toString()));

Completed in 1597 milliseconds

1 2 3 4 56 7 8 91011>>