HomeSort by relevance Sort by last modified time
    Searched refs:status (Results 51 - 75 of 11169) sorted by null

1 23 4 5 6 7 8 91011>>

  /system/nfc/src/nfa/include/
nfa_nv_ci.h 48 ** Parameters status - NFA_NV_CO_OK, NFA_NV_CO_NOSPACE, or NFA_NV_CO_FAIL
55 extern void nfa_nv_ci_write(tNFA_NV_CO_STATUS status);
68 ** status - NFA_NV_CO_OK if full buffer of data,
77 extern void nfa_nv_ci_read(uint16_t num_bytes_read, tNFA_NV_CO_STATUS status,
  /toolchain/binutils/binutils-2.27/gold/testsuite/
weak_undef_test.cc 60 int status = 0; local
67 status = 1;
74 status = 1;
81 status = 1;
88 status = 1;
95 status = 1;
102 status = 1;
105 return status;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/sys/
wait.h 43 as well as POSIX.1 use of `int' for the status word. */
46 # define __WAIT_INT(status) \
47 (__extension__ (((union { __typeof(status) __in; int __i; }) \
48 { .__in = (status) }).__i))
50 # define __WAIT_INT(status) (*(__const int *) &(status))
73 # define __WAIT_INT(status) (status)
82 # define WEXITSTATUS(status) __WEXITSTATUS (__WAIT_INT (status))
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/sys/
wait.h 43 as well as POSIX.1 use of `int' for the status word. */
46 # define __WAIT_INT(status) \
47 (__extension__ (((union { __typeof(status) __in; int __i; }) \
48 { .__in = (status) }).__i))
50 # define __WAIT_INT(status) (*(__const int *) &(status))
73 # define __WAIT_INT(status) (status)
82 # define WEXITSTATUS(status) __WEXITSTATUS (__WAIT_INT (status))
    [all...]
  /frameworks/av/media/common_time/
ICommonTimeConfig.cpp 59 status_t status = remote()->transact(GET_MASTER_ELECTION_PRIORITY, local
62 if (status == OK) {
63 status = reply.readInt32();
64 if (status == OK) {
69 return status;
76 status_t status = remote()->transact(SET_MASTER_ELECTION_PRIORITY, local
79 if (status == OK) {
80 status = reply.readInt32();
83 return status;
89 status_t status = remote()->transact(GET_MASTER_ELECTION_ENDPOINT local
114 status_t status = remote()->transact(SET_MASTER_ELECTION_ENDPOINT, local
127 status_t status = remote()->transact(GET_MASTER_ELECTION_GROUP_ID, local
145 status_t status = remote()->transact(SET_MASTER_ELECTION_GROUP_ID, local
159 status_t status = remote()->transact(GET_INTERFACE_BINDING, local
176 status_t status = remote()->transact(SET_INTERFACE_BINDING, local
189 status_t status = remote()->transact(GET_MASTER_ANNOUNCE_INTERVAL, local
206 status_t status = remote()->transact(SET_MASTER_ANNOUNCE_INTERVAL, local
219 status_t status = remote()->transact(GET_CLIENT_SYNC_INTERVAL, local
236 status_t status = remote()->transact(SET_CLIENT_SYNC_INTERVAL, local
249 status_t status = remote()->transact(GET_PANIC_THRESHOLD, local
266 status_t status = remote()->transact(SET_PANIC_THRESHOLD, local
279 status_t status = remote()->transact(GET_AUTO_DISABLE, local
296 status_t status = remote()->transact(SET_AUTO_DISABLE, local
310 status_t status = remote()->transact(FORCE_NETWORKLESS_MASTER_MODE, local
332 status_t status = getMasterElectionPriority(&priority); local
343 status_t status = setMasterElectionPriority(priority); local
351 status_t status = getMasterElectionEndpoint(&addr); local
371 status_t status; local
386 status_t status = getMasterElectionGroupId(&id); local
397 status_t status = setMasterElectionGroupId(id); local
405 status_t status = getInterfaceBinding(ret); local
417 status_t status = setInterfaceBinding(ifaceName); local
425 status_t status = getMasterAnnounceInterval(&interval); local
436 status_t status = setMasterAnnounceInterval(interval); local
444 status_t status = getClientSyncInterval(&interval); local
455 status_t status = setClientSyncInterval(interval); local
463 status_t status = getPanicThreshold(&threshold); local
474 status_t status = setPanicThreshold(threshold); local
482 status_t status = getAutoDisable(&autoDisable); local
493 status_t status = setAutoDisable(autoDisable); local
500 status_t status = forceNetworklessMasterMode(); local
    [all...]
  /external/icu/icu4c/source/i18n/
measunit.cpp 524 MeasureUnit *MeasureUnit::createGForce(UErrorCode &status) {
525 return MeasureUnit::create(0, 0, status);
528 MeasureUnit *MeasureUnit::createMeterPerSecondSquared(UErrorCode &status) {
529 return MeasureUnit::create(0, 1, status);
532 MeasureUnit *MeasureUnit::createArcMinute(UErrorCode &status) {
533 return MeasureUnit::create(1, 0, status);
536 MeasureUnit *MeasureUnit::createArcSecond(UErrorCode &status) {
537 return MeasureUnit::create(1, 1, status);
540 MeasureUnit *MeasureUnit::createDegree(UErrorCode &status) {
541 return MeasureUnit::create(1, 2, status);
    [all...]
  /development/samples/training/basic/ActivityLifecycle/src/com/example/android/lifecycle/util/
StatusTracker.java 46 * Adds the status value for the given activityName into the Map.
49 * @param status
51 public void setStatus(String activityName, String status) {
52 mMethodList.add(activityName + "." + status + "()");
54 mStatusMap.put(activityName, status);
58 * Gets the status value for the given activityName.
64 String status = mStatusMap.get(activityName); local
65 status = status.substring(2, status.length())
    [all...]
  /external/icu/icu4c/source/test/intltest/
itrbnfrt.cpp 65 UErrorCode status = U_ZERO_ERROR; local
67 = new RuleBasedNumberFormat(URBNF_SPELLOUT, Locale::getUS(), status);
69 if (U_FAILURE(status)) {
70 errcheckln(status, "failed to construct formatter - %s", u_errorName(status));
83 UErrorCode status = U_ZERO_ERROR; local
85 = new RuleBasedNumberFormat(URBNF_DURATION, Locale::getUS(), status);
87 if (U_FAILURE(status)) {
88 errcheckln(status, "failed to construct formatter - %s", u_errorName(status));
101 UErrorCode status = U_ZERO_ERROR; local
119 UErrorCode status = U_ZERO_ERROR; local
137 UErrorCode status = U_ZERO_ERROR; local
155 UErrorCode status = U_ZERO_ERROR; local
173 UErrorCode status = U_ZERO_ERROR; local
191 UErrorCode status = U_ZERO_ERROR; local
209 UErrorCode status = U_ZERO_ERROR; local
227 UErrorCode status = U_ZERO_ERROR; local
245 UErrorCode status = U_ZERO_ERROR; local
263 UErrorCode status = U_ZERO_ERROR; local
299 UErrorCode status = U_ZERO_ERROR; local
326 UErrorCode status = U_ZERO_ERROR; local
    [all...]
  /external/icu/icu4c/source/test/perf/convperf/
convperf.cpp 24 UErrorCode status = U_ZERO_ERROR; local
25 ConverterPerformanceTest test(argc, argv, status);
26 if(U_FAILURE(status)){
27 return status;
37 ConverterPerformanceTest::ConverterPerformanceTest(int32_t argc, const char* argv[], UErrorCode& status)
38 : UPerfTest(argc,argv,status){
128 UErrorCode status = U_ZERO_ERROR; local
129 UPerfFunction* pf = new ICUOpenAllConvertersFunction(TRUE, status);
130 if(U_FAILURE(status)){
137 UErrorCode status = U_ZERO_ERROR local
146 UErrorCode status = U_ZERO_ERROR; local
155 UErrorCode status = U_ZERO_ERROR; local
165 UErrorCode status = U_ZERO_ERROR; local
174 UErrorCode status = U_ZERO_ERROR; local
183 UErrorCode status = U_ZERO_ERROR; local
192 UErrorCode status = U_ZERO_ERROR; local
203 UErrorCode status = U_ZERO_ERROR; local
212 UErrorCode status = U_ZERO_ERROR; local
222 UErrorCode status = U_ZERO_ERROR; local
231 UErrorCode status = U_ZERO_ERROR; local
240 UErrorCode status = U_ZERO_ERROR; local
249 UErrorCode status = U_ZERO_ERROR; local
260 UErrorCode status = U_ZERO_ERROR; local
269 UErrorCode status = U_ZERO_ERROR; local
279 UErrorCode status = U_ZERO_ERROR; local
288 UErrorCode status = U_ZERO_ERROR; local
296 UErrorCode status = U_ZERO_ERROR; local
305 UErrorCode status = U_ZERO_ERROR; local
317 UErrorCode status = U_ZERO_ERROR; local
326 UErrorCode status = U_ZERO_ERROR; local
336 UErrorCode status = U_ZERO_ERROR; local
345 UErrorCode status = U_ZERO_ERROR; local
354 UErrorCode status = U_ZERO_ERROR; local
363 UErrorCode status = U_ZERO_ERROR; local
374 UErrorCode status = U_ZERO_ERROR; local
383 UErrorCode status = U_ZERO_ERROR; local
393 UErrorCode status = U_ZERO_ERROR; local
402 UErrorCode status = U_ZERO_ERROR; local
411 UErrorCode status = U_ZERO_ERROR; local
420 UErrorCode status = U_ZERO_ERROR; local
433 UErrorCode status = U_ZERO_ERROR; local
442 UErrorCode status = U_ZERO_ERROR; local
452 UErrorCode status = U_ZERO_ERROR; local
461 UErrorCode status = U_ZERO_ERROR; local
470 UErrorCode status = U_ZERO_ERROR; local
479 UErrorCode status = U_ZERO_ERROR; local
492 UErrorCode status = U_ZERO_ERROR; local
501 UErrorCode status = U_ZERO_ERROR; local
511 UErrorCode status = U_ZERO_ERROR; local
520 UErrorCode status = U_ZERO_ERROR; local
529 UErrorCode status = U_ZERO_ERROR; local
538 UErrorCode status = U_ZERO_ERROR; local
550 UErrorCode status = U_ZERO_ERROR; local
559 UErrorCode status = U_ZERO_ERROR; local
569 UErrorCode status = U_ZERO_ERROR; local
578 UErrorCode status = U_ZERO_ERROR; local
587 UErrorCode status = U_ZERO_ERROR; local
596 UErrorCode status = U_ZERO_ERROR; local
607 UErrorCode status = U_ZERO_ERROR; local
616 UErrorCode status = U_ZERO_ERROR; local
626 UErrorCode status = U_ZERO_ERROR; local
635 UErrorCode status = U_ZERO_ERROR; local
644 UErrorCode status = U_ZERO_ERROR; local
653 UErrorCode status = U_ZERO_ERROR; local
    [all...]
  /hardware/interfaces/media/omx/1.0/
IGraphicBufferSource.hal 32 configure(IOmxNode omxNode, Dataspace dataspace) generates (Status status);
34 setSuspend(bool suspend, int64_t timeUs) generates (Status status);
36 setRepeatPreviousFrameDelayUs(int64_t repeatAfterUs) generates (Status status);
38 setMaxFps(float maxFps) generates (Status status);
40 setTimeLapseConfig(double fps, double captureFps) generates (Status status);
    [all...]
  /external/icu/icu4c/source/test/cintltst/
reapits.c 36 #define TEST_ASSERT_SUCCESS(status) {if (U_FAILURE(status)) { \
37 log_data_err("Failure at file %s:%d - error = %s (Are you missing data?)\n", __FILE__, __LINE__, u_errorName(status));}}
55 status = U_ZERO_ERROR; \
56 re = uregex_openC(pattern, flags, NULL, &status); \
57 TEST_ASSERT_SUCCESS(status); \
60 uregex_setText(re, srcString, -1, &status); \
61 TEST_ASSERT_SUCCESS(status); \
62 if (U_SUCCESS(status)) {
66 TEST_ASSERT_SUCCESS(status); \
205 UErrorCode status = U_ZERO_ERROR; local
1407 UErrorCode status = U_ZERO_ERROR; local
2194 UErrorCode status = U_ZERO_ERROR; local
2235 UErrorCode status = U_ZERO_ERROR; local
2267 UErrorCode status = U_ZERO_ERROR; local
    [all...]
  /external/ImageMagick/MagickWand/tests/
add_mixed.c 30 status; local
41 status = MagickReadImage(wand, "font_0.gif" );
42 if (status == MagickFalse)
45 status = MagickReadImage(wand, "font_1.gif" );
46 if (status == MagickFalse)
49 status = MagickReadImage(wand, "font_2.gif" );
50 if (status == MagickFalse)
55 status = MagickReadImage(wand, "font_3.gif" );
56 if (status == MagickFalse)
59 status = MagickReadImage(wand, "font_4.gif" )
    [all...]
  /external/icu/icu4c/source/tools/ctestfw/unicode/
datamap.h 43 virtual const UnicodeString getString(const char* key, UErrorCode &status) const = 0;
50 virtual int32_t getInt(const char* key, UErrorCode &status) const = 0;
55 * @param status UErrorCode in/out parameter
58 virtual int32_t getInt28(const char* key, UErrorCode &status) const = 0;
63 * @param status UErrorCode in/out parameter
66 virtual uint32_t getUInt28(const char* key, UErrorCode &status) const = 0;
72 * @param status UErrorCode in/out parameter
75 virtual const int32_t *getIntVector(int32_t &length, const char *key, UErrorCode &status) const = 0;
81 * @param status UErrorCode in/out parameter
84 virtual const uint8_t *getBinary(int32_t &length, const char *key, UErrorCode &status) const = 0
    [all...]
  /external/compiler-rt/test/lsan/TestCases/
fork.cc 14 int status = 0; local
19 waitpid(pid, &status, 0);
20 assert(WIFEXITED(status));
21 return WEXITSTATUS(status);
  /external/conscrypt/platform/src/main/java/org/conscrypt/ct/
VerifiedSCT.java 28 public enum Status {
36 public final Status status; field in class:VerifiedSCT
38 public VerifiedSCT(SignedCertificateTimestamp sct, Status status) {
40 this.status = status;
  /external/elfutils/tests/
hash.c 38 int status; local
41 status = check ("_DYNAMIC", 165832675);
42 status |= check ("_GLOBAL_OFFSET_TABLE_", 102264335);
44 return status;
  /external/icu/android_utils/
IcuUtils.cpp 36 UErrorCode status = U_ZERO_ERROR; local
40 u_init(&status);
41 LOG_ALWAYS_FATAL_IF(!U_SUCCESS(status), "Failed to initialize ICU %s", u_errorName(status));
  /external/icu/icu4c/source/common/
localsvc.h 21 * @param status error status
24 U_CAPI void* uprv_svc_hook(const char *what, UErrorCode *status);
  /external/swiftshader/third_party/llvm-subzero/include/llvm/Demangle/
Demangle.h 19 /// The *status will be set to
27 int *status);
  /external/tensorflow/tensorflow/compiler/xla/
statusor.cc 24 void Helper::HandleInvalidStatusCtorArg(Status* status) {
26 "An OK status is not a valid constructor argument to StatusOr<T>";
29 *status = ::tensorflow::errors::Internal(kMessage);
32 void Helper::Crash(const Status& status) {
34 << status;
  /frameworks/base/core/java/android/hardware/location/
GeofenceHardwareCallback.java 49 * @param status One of {@link GeofenceHardware#GEOFENCE_SUCCESS},
55 public void onGeofenceAdd(int geofenceId, int status) {
62 * @param status One of {@link GeofenceHardware#GEOFENCE_SUCCESS},
66 public void onGeofenceRemove(int geofenceId, int status) {
73 * @param status One of {@link GeofenceHardware#GEOFENCE_SUCCESS},
77 public void onGeofencePause(int geofenceId, int status) {
84 * @param status One of {@link GeofenceHardware#GEOFENCE_SUCCESS},
89 public void onGeofenceResume(int geofenceId, int status) {
  /hardware/interfaces/cas/1.0/default/
TypeConvert.cpp 29 Status toStatus(status_t legacyStatus) {
30 Status status; local
33 status = Status::OK;
36 status = Status::ERROR_CAS_NO_LICENSE;
39 status = Status::ERROR_CAS_LICENSE_EXPIRED;
42 status = Status::ERROR_CAS_SESSION_NOT_OPENED
    [all...]
  /hardware/interfaces/wifi/1.0/
IWifiIface.hal 26 * @return status WifiStatus of the operation.
27 * Possible status codes:
32 getType() generates (WifiStatus status, IfaceType type);
37 * @return status WifiStatus of the operation.
38 * Possible status codes:
43 getName() generates (WifiStatus status, string name);
  /hardware/interfaces/wifi/supplicant/1.0/
ISupplicantP2pNetwork.hal 37 * @return status P2ptus of the operation.
38 * Possible status codes:
44 generates (SupplicantStatus status);
52 * @return status Status of the operation.
53 * Possible status codes:
58 getSsid() generates (SupplicantStatus status, Ssid ssid);
63 * @return status Status of the operation.
64 * Possible status codes
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Demangle/
Demangle.h 19 /// The *status will be set to
27 int *status);

Completed in 309 milliseconds

1 23 4 5 6 7 8 91011>>