Searched refs:status (Results 1 - 25 of 610) sorted by relevance

1234567891011>>

/system/update_engine/
H A Dparcelable_update_engine_status.cc25 status_t status; local
27 status = parcel->writeInt64(last_checked_time_);
28 if (status != OK) {
29 return status;
32 status = parcel->writeDouble(progress_);
33 if (status != OK) {
34 return status;
37 status = parcel->writeString16(current_operation_);
38 if (status != OK) {
39 return status;
51 status_t status; local
[all...]
H A Dupdate_status_utils.cc25 const char* UpdateStatusToString(const UpdateStatus& status) { argument
26 switch (status) {
54 UpdateStatus* status) {
56 *status = UpdateStatus::IDLE;
59 *status = UpdateStatus::CHECKING_FOR_UPDATE;
62 *status = UpdateStatus::UPDATE_AVAILABLE;
65 *status = UpdateStatus::DOWNLOADING;
68 *status = UpdateStatus::VERIFYING;
71 *status = UpdateStatus::FINALIZING;
74 *status
53 StringToUpdateStatus(const std::string& s, UpdateStatus* status) argument
[all...]
/system/bt/service/common/android/bluetooth/
H A Dbluetooth_gatt_characteristic.cc32 status_t status = parcel->writeInt32(handle_); local
33 if (status != OK) return status;
35 status = parcel->writeParcelable((UUID)uuid_);
36 if (status != OK) return status;
38 status = parcel->writeInt32(properties_);
39 if (status != OK) return status;
41 status
55 status_t status = parcel->readInt32(&tmp); local
[all...]
H A Dbluetooth_gatt_descriptor.cc31 status_t status = parcel->writeParcelable((UUID)uuid_); local
32 if (status != OK) return status;
34 status = parcel->writeInt32(handle_);
35 if (status != OK) return status;
37 status = parcel->writeInt32(permissions_);
38 return status;
43 status_t status = parcel->readParcelable(&uuid); local
44 if (status !
[all...]
H A Dscan_settings.cc31 status_t status = parcel->writeInt32(mode_); local
32 if (status != OK) return status;
34 status = parcel->writeInt32(callback_type_);
35 if (status != OK) return status;
37 status = parcel->writeInt32(result_type_);
38 if (status != OK) return status;
40 status
52 status_t status = parcel->readInt32(&value); local
[all...]
H A Dbluetooth_gatt_included_service.cc32 status_t status = parcel->writeParcelable((UUID)uuid_); local
33 if (status != OK) return status;
35 status = parcel->writeInt32(handle_);
36 if (status != OK) return status;
38 status = parcel->writeBool(primary_);
39 return status;
44 status_t status = parcel->readParcelable(&uuid); local
45 if (status !
[all...]
H A Dadvertise_settings.cc25 status_t status = parcel->writeInt32(mode_); local
26 if (status != OK) return status;
28 status = parcel->writeInt32(tx_power_level_);
29 if (status != OK) return status;
31 status = parcel->writeInt32(connectable_);
32 if (status != OK) return status;
34 status
40 status_t status = parcel->readInt32(&value); local
[all...]
H A Dbluetooth_gatt_service.cc32 status_t status = parcel->writeInt32(handle_); local
33 if (status != OK) return status;
35 status = parcel->writeBool(primary_);
36 if (status != OK) return status;
38 status = parcel->writeParcelable((UUID)uuid_);
39 if (status != OK) return status;
44 status
57 status_t status = parcel->readInt32(&tmp); local
[all...]
H A Dscan_filter.cc35 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
71 status_t status = parcel->readString16(&name); local
[all...]
H A DIBluetoothGattClientCallback.aidl20 void OnClientRegistered(int status, int client_id);
H A DIBluetoothLeAdvertiserCallback.aidl22 void OnAdvertiserRegistered(int status, int advertiser_id);
23 void OnMultiAdvertiseCallback(int status, boolean is_start, in AdvertiseSettings settings);
H A Dadvertise_data.cc25 status_t status = parcel->writeByteVector(data_); local
26 return status;
30 status_t status = parcel->readByteVector(&data_); local
31 return status;
H A Dscan_result.cc35 status_t status = local
37 if (status != OK) return status;
39 status = parcel->writeByteVector(scan_record_);
40 if (status != OK) return status;
42 status = parcel->writeInt32(rssi_);
43 return status;
48 status_t status = parcel->readString16(&addr); local
49 if (status !
[all...]
H A DIBluetoothLowEnergyCallback.aidl23 void OnClientRegistered(int status, int client_id);
24 void OnConnectionState(int status, int client_id, String address, boolean connected);
25 void OnMtuChanged(int status, String address, int mtu);
/system/hardware/interfaces/wifi/keystore/1.0/vts/functional/
H A DVtsHalWifiKeystoreV1_0TargetTest.cpp23 int status = RUN_ALL_TESTS(); local
24 LOG(INFO) << "Test result = " << status;
25 return status;
/system/bt/bta/hl/
H A Dbta_hl_ci.cc44 * status - BTA_MA_STATUS_OK if operation is successful
51 void bta_hl_ci_get_tx_data(tBTA_HL_MDL_HANDLE mdl_handle, tBTA_HL_STATUS status, argument
57 APPL_TRACE_DEBUG("%s mdl_handle=%d status=%d evt=%d\n", __func__, mdl_handle,
58 status, evt);
63 p_evt->status = status;
76 * status - BTA_MA_STATUS_OK if operation is successful
84 tBTA_HL_STATUS status, uint16_t evt) {
89 APPL_TRACE_DEBUG("%s mdl_handle=%d status=%d evt=%d\n", __func__, mdl_handle,
90 status, ev
83 bta_hl_ci_put_rx_data(tBTA_HL_MDL_HANDLE mdl_handle, tBTA_HL_STATUS status, uint16_t evt) argument
115 bta_hl_ci_get_echo_data(tBTA_HL_MCL_HANDLE mcl_handle, tBTA_HL_STATUS status, uint16_t evt) argument
147 bta_hl_ci_put_echo_data(tBTA_HL_MCL_HANDLE mcl_handle, tBTA_HL_STATUS status, uint16_t evt) argument
[all...]
/system/bt/bta/include/
H A Dbta_hl_ci.h52 * status - BTA_MA_STATUS_OK if operation is successful
60 tBTA_HL_STATUS status, uint16_t evt);
70 * status - BTA_MA_STATUS_OK if operation is successful
78 tBTA_HL_STATUS status, uint16_t evt);
88 * status - BTA_MA_STATUS_OK if operation is successful
96 tBTA_HL_STATUS status, uint16_t evt);
106 * status - BTA_MA_STATUS_OK if operation is successful
114 tBTA_HL_STATUS status, uint16_t evt);
/system/bt/btif/include/
H A Dbtif_a2dp_control.h34 // |status| is the acknowledement status - see |tA2DP_CTRL_ACK|.
35 void btif_a2dp_command_ack(tA2DP_CTRL_ACK status);
/system/nfc/src/nfa/include/
H A Dnfa_nv_ci.h36 tNFA_NV_CO_STATUS status; member in struct:__anon2126
44 tNFA_NV_CO_STATUS status; member in struct:__anon2127
66 ** Parameters status - NFA_NV_CO_OK, NFA_NV_CO_NOSPACE, or NFA_NV_CO_FAIL
73 extern void nfa_nv_ci_write(tNFA_NV_CO_STATUS status);
86 ** status - NFA_NV_CO_OK if full buffer of data,
95 extern void nfa_nv_ci_read(uint16_t num_bytes_read, tNFA_NV_CO_STATUS status,
/system/nfc/src/nfc/nfc/
H A Dnfc_test.c53 tNFC_STATUS status = NFC_STATUS_FAILED; local
58 status = nfc_ncif_send_data(p_cb, p_data);
61 if (status != NFC_STATUS_OK) GKI_freebuf(p_data);
63 return status;
/system/bt/service/doc/
H A DIBluetoothLowEnergyCallback.txt24 * IBluetoothLowEnergy.registerClient. |status| will be BLE_STATUS_SUCCESS (0)
29 void onClientRegistered(in int status, in int client_if);
33 void OnConnectionState(in int status, in int client_id, in const char* address,
39 void OnMtuChanged(in int status, in const char* address, in int mtu);
52 void onMultiAdvertiseCallback(in int status, in boolean is_start,
/system/nfc/src/hal/int/
H A Dnfc_hal_nv_ci.h51 ** Parameters status - NFA_NV_CO_OK, NFA_NV_CO_NOSPACE, or NFA_NV_CO_FAIL
58 void nfc_hal_nv_ci_write(tNFC_HAL_NV_CO_STATUS status);
71 ** status - NFC_HAL_NV_CO_OK if full buffer of data,
81 void nfc_hal_nv_ci_read(uint16_t num_bytes_read, tNFC_HAL_NV_CO_STATUS status,
/system/tools/aidl/tests/
H A Dsimple_parcelable.cpp34 status_t status = parcel->writeString16(name_); local
35 if (status != OK) {
36 return status;
38 status = parcel->writeInt32(number_);
39 return status;
43 status_t status = parcel->readString16(&name_); local
44 if (status != OK) {
45 return status;
/system/update_engine/update_manager/
H A Dpolicy.cc25 string ToString(EvalStatus status) { argument
26 switch (status) {
H A Dumtest_utils.cc25 void PrintTo(const EvalStatus& status, ::std::ostream* os) { argument
26 *os << ToString(status);

Completed in 645 milliseconds

1234567891011>>