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

12 3 4 5 6 7 8 91011>>

  /frameworks/av/media/libaaudio/src/binding/
AAudioStreamConfiguration.cpp 38 status_t status; local
39 status = parcel->writeInt32(getDeviceId());
40 if (status != NO_ERROR) goto error;
41 status = parcel->writeInt32(getSampleRate());
42 if (status != NO_ERROR) goto error;
43 status = parcel->writeInt32(getSamplesPerFrame());
44 if (status != NO_ERROR) goto error;
45 status = parcel->writeInt32((int32_t) getSharingMode());
46 if (status != NO_ERROR) goto error;
47 status = parcel->writeInt32((int32_t) getFormat())
69 status_t status = parcel->readInt32(&value); local
    [all...]
  /external/google-breakpad/src/tools/solaris/dump_syms/
run_regtest.sh 33 status=$?
35 if [ $status -ne 0 ] ; then
37 exit $status
42 status=$?
44 if [ $status -eq 0 ] ; then
51 exit $status
  /external/google-breakpad/src/tools/windows/dump_syms/
run_regtest.sh 35 status=$?
37 if [ $status -ne 0 ] ; then
39 exit $status
44 status=$?
46 if [ $status -eq 0 ] ; then
53 exit $status
  /external/icu/icu4c/source/test/intltest/
scientificnumberformattertest.cpp 52 UErrorCode status = U_ZERO_ERROR; local
57 "en" , "<sup>", "</sup>", status));
58 if (!assertSuccess("Can't create ScientificNumberFormatter", status)) {
61 fmt->format(1.23456e-78, appendTo, status);
71 "en", status));
72 if (!assertSuccess("Can't create ScientificNumberFormatter2", status)) {
76 fmt->format(1.23456e-78, appendTo, status);
90 fmt3->format(1.23456e-78, appendTo, status);
96 assertSuccess("", status);
100 UErrorCode status = U_ZERO_ERROR local
119 UErrorCode status = U_ZERO_ERROR; local
146 UErrorCode status = U_ZERO_ERROR; local
173 UErrorCode status = U_ZERO_ERROR; local
195 UErrorCode status = U_ZERO_ERROR; local
    [all...]
measfmttest.cpp 176 UErrorCode status = U_ZERO_ERROR; local
178 measureUnit.adoptInstead(MeasureUnit::createGForce(status));
179 measureUnit.adoptInstead(MeasureUnit::createArcMinute(status));
180 measureUnit.adoptInstead(MeasureUnit::createArcSecond(status));
181 measureUnit.adoptInstead(MeasureUnit::createDegree(status));
182 measureUnit.adoptInstead(MeasureUnit::createAcre(status));
183 measureUnit.adoptInstead(MeasureUnit::createHectare(status));
184 measureUnit.adoptInstead(MeasureUnit::createSquareFoot(status));
185 measureUnit.adoptInstead(MeasureUnit::createSquareKilometer(status));
186 measureUnit.adoptInstead(MeasureUnit::createSquareMeter(status));
228 UErrorCode status = U_ZERO_ERROR; local
355 UErrorCode status = U_ZERO_ERROR; local
483 UErrorCode status = U_ZERO_ERROR; local
618 UErrorCode status = U_ZERO_ERROR; local
758 UErrorCode status = U_ZERO_ERROR; local
902 UErrorCode status = U_ZERO_ERROR; local
1043 UErrorCode status = U_ZERO_ERROR; local
1077 UErrorCode status = U_ZERO_ERROR; local
1137 UErrorCode status = U_ZERO_ERROR; local
1138 MeasureFormat fmtFr(Locale::getFrench(), UMEASFMT_WIDTH_SHORT, status); local
1140 Locale::getFrench(), UMEASFMT_WIDTH_WIDE, status); local
1142 Locale::getFrench(), UMEASFMT_WIDTH_NARROW, status); local
1143 MeasureFormat fmtEn(Locale::getUS(), UMEASFMT_WIDTH_WIDE, status); local
1214 UErrorCode status = U_ZERO_ERROR; local
1422 UErrorCode status = U_ZERO_ERROR; local
1455 UErrorCode status = U_ZERO_ERROR; local
1560 UErrorCode status = U_ZERO_ERROR; local
1582 UErrorCode status = U_ZERO_ERROR; local
1589 UErrorCode status = U_ZERO_ERROR; local
1655 UErrorCode status = U_ZERO_ERROR; local
1708 UErrorCode status = U_ZERO_ERROR; local
1758 UErrorCode status = U_ZERO_ERROR; local
1780 UErrorCode status = U_ZERO_ERROR; local
1822 UErrorCode status = U_ZERO_ERROR; local
1823 MeasureFormat fmt(Locale(localeID), width, status); local
1842 UErrorCode status = U_ZERO_ERROR; local
1859 UErrorCode status = U_ZERO_ERROR; local
1899 UErrorCode status = U_ZERO_ERROR; local
1928 UErrorCode status = U_ZERO_ERROR; local
1929 MeasureFormat fmt(Locale(localeID), width, status); local
1954 UErrorCode status = U_ZERO_ERROR; local
1989 UErrorCode status = U_ZERO_ERROR; local
2039 UErrorCode status = U_ZERO_ERROR; local
2057 UErrorCode status = U_ZERO_ERROR; local
2080 UErrorCode status = U_ZERO_ERROR; local
2107 UErrorCode status = U_ZERO_ERROR; local
2144 UErrorCode status = U_ZERO_ERROR; local
2188 UErrorCode status = U_ZERO_ERROR; local
2228 UErrorCode status = U_ZERO_ERROR; local
    [all...]
  /external/libmojo/base/android/
cxa_demangle_stub.cc 15 int* status) {
17 if (status)
18 *status = kMemoryAllocFailure;
  /frameworks/base/core/java/android/bluetooth/
BluetoothGattCallback.java 33 * @param status Status of the PHY update operation. {@link BluetoothGatt#GATT_SUCCESS} if the
36 public void onPhyUpdate(BluetoothGatt gatt, int txPhy, int rxPhy, int status) {
47 * @param status Status of the PHY read operation. {@link BluetoothGatt#GATT_SUCCESS} if the
50 public void onPhyRead(BluetoothGatt gatt, int txPhy, int rxPhy, int status) {
58 * @param status Status of the connect or disconnect operation. {@link
63 public void onConnectionStateChange(BluetoothGatt gatt, int status,
72 * @param status {@link BluetoothGatt#GATT_SUCCESS} if the remote device has been explore
    [all...]
  /packages/apps/Dialer/java/com/android/voicemail/impl/transcribe/grpc/
TranscriptionResponse.java 20 import io.grpc.Status;
24 * status response, subclasses will handle request specific responses.
27 @Nullable public final Status status; field in class:TranscriptionResponse
30 this.status = null;
33 TranscriptionResponse(Status status) {
34 Assert.checkArgument(status != null);
35 this.status = status;
    [all...]
  /system/bt/btif/include/
btif_a2dp_audio_interface.h 29 void btif_a2dp_audio_on_started(tBTA_AV_STATUS status);
30 void btif_a2dp_audio_on_stopped(tBTA_AV_STATUS status);
31 void btif_a2dp_audio_on_suspended(tBTA_AV_STATUS status);
  /system/hardware/interfaces/wifi/keystore/1.0/vts/functional/
VtsHalWifiKeystoreV1_0TargetTest.cpp 23 int status = RUN_ALL_TESTS(); local
24 LOG(INFO) << "Test result = " << status;
25 return status;
  /toolchain/binutils/binutils-2.27/libiberty/
asprintf.c 49 int status; local
52 status = vasprintf (buf, fmt, ap);
54 return status;
  /external/autotest/client/bin/
harness_simple.py 25 self.status = os.fdopen(3, 'w')
28 def test_status(self, status, tag):
30 if self.status:
31 for line in status.split('\n'):
32 # prepend status messages with
36 self.status.write(pre + line + '\n')
37 self.status.flush()
  /external/icu/icu4c/source/common/
uinit.cpp 37 initData(UErrorCode &status)
41 uplug_init(&status);
57 ucnv_io_countKnownConverters(&status);
70 u_init(UErrorCode *status) {
72 umtx_initOnce(gICUInitOnce, &initData, *status);
73 UTRACE_EXIT_STATUS(*status);
  /external/tensorflow/tensorflow/stream_executor/
event.cc 31 auto status = stream_exec_->DeallocateEvent(this); local
32 if (!status.ok()) {
33 LOG(ERROR) << status.error_message();
38 auto status = stream_exec_->AllocateEvent(this); local
39 if (!status.ok()) {
40 LOG(ERROR) << status.error_message();
47 Event::Status Event::PollForStatus() {
  /system/bt/service/common/android/bluetooth/
scan_filter.cc 35 status_t status = local
37 if (status != OK) return status;
39 status = parcel->writeString16(String16(String8(device_address_.c_str())));
40 if (status != OK) return status;
53 status = parcel->writeNullableParcelable(uuid);
55 if (status != OK) return status;
63 status = parcel->writeNullableParcelable(uuid)
71 status_t status = parcel->readString16(&name); local
    [all...]
IBluetoothGattClientCallback.aidl 20 void OnClientRegistered(int status, int client_id);
  /toolchain/binutils/binutils-2.27/gold/testsuite/
weak_undef_test_2.cc 48 int status = 0; local
54 status = 1;
61 status = 1;
68 status = 1;
75 status = 1;
78 return status;
  /bionic/libc/stdlib/
exit.c 38 void exit(int status) {
41 _exit(status);
  /external/clang/test/Sema/
transparent-union-pointer.c 12 int status = 0; local
13 wait(&status);
  /external/icu/icu4c/source/test/cintltst/
cgendtst.c 37 UErrorCode status = U_ZERO_ERROR; local
38 const UGenderInfo* actual_gi = ugender_getInstance("fr_CA", &status);
40 if (U_FAILURE(status)) {
41 log_err_status(status, "Fail to create UGenderInfo - %s (Are you missing data?)", u_errorName(status));
44 actual = ugender_getListGender(actual_gi, kAllFemale, UPRV_LENGTHOF(kAllFemale), &status);
45 if (U_FAILURE(status)) {
46 log_err("Fail to get gender of list - %s\n", u_errorName(status));
  /frameworks/base/core/java/android/bluetooth/le/
AdvertisingSetCallback.java 21 * status.
58 * indicating result of the operation. If status is ADVERTISE_SUCCESS, then advertisingSet
60 * null, and status will be set to proper error code.
64 * @param status Status of the operation.
66 public void onAdvertisingSetStarted(AdvertisingSet advertisingSet, int txPower, int status) {
80 * indicating result of the operation. If status is ADVERTISE_SUCCESS, then advertising set is
84 * @param status Status of the operation.
86 public void onAdvertisingEnabled(AdvertisingSet advertisingSet, boolean enable, int status) {
    [all...]
  /frameworks/base/core/java/android/hardware/location/
IGeofenceHardwareCallback.aidl 25 void onGeofenceAdd(int geofenceId, int status);
26 void onGeofenceRemove(int geofenceId, int status);
27 void onGeofencePause(int geofenceId, int status);
28 void onGeofenceResume(int geofenceId, int status);
  /frameworks/base/core/java/android/service/euicc/
IGetOtaStatusCallback.aidl 21 void onSuccess(int status);
IOtaStatusChangedCallback.aidl 21 void onOtaStatusChanged(int status);
  /frameworks/hardware/interfaces/displayservice/1.0/
IDisplayEventReceiver.hal 25 * @return status Must be:
30 init(IEventCallback callback) generates (Status status);
38 * @return status Must be:
43 setVsyncRate(int32_t count) generates (Status status);
48 * @return status Must be:
53 requestNextVsync() generates (Status status);
59 * @return status Must be
    [all...]

Completed in 482 milliseconds

12 3 4 5 6 7 8 91011>>