HomeSort by relevance Sort by last modified time
    Searched defs:STATUS (Results 1 - 25 of 30) sorted by null

1 2

  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/Common/
EfiUtilityMsgs.h 26 // Status codes returned by EFI utility programs and functions
33 typedef int STATUS;
43 STATUS
  /device/linaro/bootloader/edk2/BaseTools/Source/C/Common/
EfiUtilityMsgs.h 30 // Status codes returned by EFI utility programs and functions
37 typedef int STATUS;
50 STATUS
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/GuidChk/
CommonUtils.h 34 typedef UINT32 STATUS;
  /device/linaro/bootloader/edk2/Vlv2DeviceRefCodePkg/ValleyView2Soc/CPU/Include/
Types.h 53 typedef UINT32 STATUS;
  /external/autotest/frontend/server/
models.py 20 'Status : %(status)s\n'
28 STATUS = enum.Enum(*STATUS_LIST, string_values=True)
33 status = dbmodels.CharField(unique=False, max_length=128, variable in class:Server
34 choices=STATUS.choices())
53 'status': self.status,
75 'status': 'primary',
84 details['status'] = self.status
    [all...]
  /external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
ICUTaglet.java 105 protected static final String STATUS = "<dt><b>Status:</b></dt>";
140 return STATUS + "<dd><em>Technology Preview</em>. <font color='red'>" +
143 return STATUS + "<dd><em>Internal</em>. <font color='red'>" +
164 return STATUS + "<dd>Draft " + tag.text() + ".</dd>";
182 return STATUS + "<dd>Stable " + text + ".</dd>";
184 return STATUS + "<dd>Stable.</dd>";
226 return STATUS + "<dd><em>Obsolete.</em> <font color='red'>Will be removed in " +
  /external/libpcap/
atmuni31.h 52 #define STATUS 0x7d /* status */
53 #define STATUS_ENQ 0x75 /* status ack */
  /developers/build/prebuilts/gradle/LNotifications/Application/src/main/java/com/example/android/lnotifications/
OtherMetadataFragment.java 307 STATUS("status"),
  /developers/samples/android/notification/LNotifications/Application/src/main/java/com/example/android/lnotifications/
OtherMetadataFragment.java 307 STATUS("status"),
  /development/samples/browseable/LNotifications/src/com.example.android.lnotifications/
OtherMetadataFragment.java 307 STATUS("status"),
  /bionic/libc/include/arpa/
nameser_compat.h 98 #define STATUS ns_o_status
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/qstiles/
InteractiveVerifierActivity.java 42 private static final String STATUS = "status";
75 protected int status; field in class:InteractiveVerifierActivity.InteractiveTestCase
93 /** Set status to {@link #READY} to proceed, or {@link #SETUP} to try again. */
95 status = READY;
99 /** Set status to {@link #PASS} or @{link #FAIL} to proceed, or {@link #READY} to retry. */
101 status = FAIL;
105 /** Do not modify status. */
111 status = FAIL;
116 status = FAIL
176 final int status = mCurrentTest == null ? SETUP : mCurrentTest.status; local
207 ImageView status = (ImageView) item.findViewById(R.id.tiles_status); local
    [all...]
  /cts/tests/tests/telephony/current/src/android/telephony/cts/
SmsMessageTest.java 68 private static final int STATUS = 0;
120 assertEquals(STATUS, sms.getStatus());
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
telnetlib.py 77 STATUS = chr(5) # give status
  /device/linaro/bootloader/edk2/StdLib/Include/arpa/
nameser_compat.h 158 #define STATUS ns_o_status
  /external/mockftpserver/branches/1.x_Branch/src/test/java/org/mockftpserver/stub/
StubFtpServerIntegrationTest.java 203 * Test getting the status (STAT)
207 final String STATUS = "some information 123";
209 statCommandHandler.setStatus(STATUS);
214 String status = ftpClient.getStatus(); local
215 assertEquals("STAT reply", "211 " + STATUS + ".", status.trim());
220 * Test getting the status (STAT), when the reply text contains multiple lines
224 final String STATUS = "System name: abc.def\nVersion 3.5.7\nNumber of failed logins: 2";
227 statCommandHandler.setStatus(STATUS);
232 String status = ftpClient.getStatus(); local
    [all...]
  /external/python/cpython2/Lib/
telnetlib.py 78 STATUS = chr(5) # give status
  /external/python/cpython3/Lib/
telnetlib.py 77 STATUS = bytes([5]) # give status
  /external/tcpdump/
print-atm.c 89 #define STATUS 0x7d /* status */
90 #define STATUS_ENQ 0x75 /* status ack */
336 { STATUS, "Status" },
nameser.h 78 #define STATUS 0x2 /* nameserver status query */
201 * Status return codes for T_UNSPEC conversion routines
  /external/u-boot/include/
ns87308.h 42 #define PWM_WDST 7 /* 7 watchdog status */
78 #define STATUS 0x05
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/notifications/
InteractiveVerifierActivity.java 53 private static final String STATUS = "status";
98 protected int status; field in class:InteractiveVerifierActivity.InteractiveTestCase
115 /** Set status to {@link #READY} to proceed, or {@link #SETUP} to try again. */
116 protected void setUp() { status = READY; next(); };
118 /** Set status to {@link #PASS} or @{link #FAIL} to proceed, or {@link #READY} to retry. */
119 protected void test() { status = FAIL; next(); };
121 /** Do not modify status. */
125 status = FAIL;
156 int savedStatus = (savedState == null) ? SETUP : savedState.getInt(STATUS, SETUP)
190 final int status = mCurrentTest == null ? SETUP : mCurrentTest.status; local
210 ImageView status = (ImageView) item.findViewById(R.id.nls_status); local
    [all...]
  /external/dnsmasq/src/
nameser.h 122 #define STATUS 0x2 /* nameserver status query */
256 * Status return codes for T_UNSPEC conversion routines
  /external/mockftpserver/MockFtpServer/src/test/java/org/mockftpserver/stub/
StubFtpServerIntegrationTest.java 183 final String STATUS = "some information 123";
185 statCommandHandler.setStatus(STATUS);
190 String status = ftpClient.getStatus(); local
191 assertEquals("STAT reply", "211 " + STATUS + ".", status.trim());
196 * Test getting the status (STAT), when the reply text contains multiple lines
200 final String STATUS = "System name: abc.def\nVersion 3.5.7\nNumber of failed logins: 2";
203 statCommandHandler.setStatus(STATUS);
208 String status = ftpClient.getStatus(); local
209 assertEquals("STAT reply", FORMATTED_REPLY_STATUS, status.trim());
    [all...]
  /development/samples/ApiDemos/src/com/example/android/mmslib/pdu/
PduHeaders.java 51 public static final int STATUS = 0x95;
171 * X-Mms-Status Field.
210 * X-Mms-Response-Status field types.
245 * X-Mms-Retrieve-Status field types.
264 * X-Mms-Read-Status field types.
270 * X-Mms-Cancel-Status field types.
310 * X-Mms-Store-Status field types.
401 case STATUS:

Completed in 2144 milliseconds

1 2