HomeSort by relevance Sort by last modified time
    Searched defs:status (Results 626 - 650 of 6808) sorted by null

<<21222324252627282930>>

  /system/bt/stack/avrc/
avrc_utils.cc 160 tAVRC_STS status = AVRC_STS_BAD_CMD; local
170 status = AVRC_STS_NO_ERROR;
174 return status;
  /system/bt/stack/btm/
btm_ble_cont_energy.cc 46 uint8_t status = 0; local
55 STREAM_TO_UINT8(status, p);
62 "energy_info status=%d,tx_t=%ld, rx_t=%ld, ener_used=%ld, idle_t=%ld",
63 status, total_tx_time, total_rx_time, total_energy_used, total_idle_time);
67 total_idle_time, total_energy_used, status);
80 * Returns status
  /system/bt/stack/mcap/
mca_dact.cc 134 uint8_t status; local
136 /* do not need to check cong, because API already checked the status */
137 status = L2CA_DataWrite(p_dcb->lcid, p_data->p_pkt);
138 if (status == L2CAP_DW_CONGESTED) {
  /system/chre/platform/slpi/
system_timer.cc 33 timer_error_type status = timer_def_osal( local
37 if (status != TE_SUCCESS) {
38 LOGE("Error initializing timer %d", status);
53 timer_error_type status = timer_set_64(&mTimerHandle, local
55 if (status != TE_SUCCESS) {
56 LOGE("Error setting timer %d", status);
  /system/core/fastboot/
socket_mock.h 92 bool status; // Return value for Send() or timeout status for Receive(). member in struct:SocketMock::Event
  /system/core/init/test_service/
test_service.cpp 26 printf("Usage: %s <status field> <value> [<status field> <value>]*\n", argv[0]);
33 LOG(FATAL) << "no status field requested";
42 std::string status; local
43 bool res = android::base::ReadFileToString("/proc/self/status", &status, true);
45 PLOG(FATAL) << "could not read /proc/self/status";
49 std::vector<std::string> lines = android::base::Split(status, "\n");
  /system/core/libbinderwrapper/
real_binder_wrapper.cc 72 status_t status = defaultServiceManager()->addService( local
74 if (status != OK) {
  /system/core/libsync/include/android/
sync.h 47 int32_t status; member in struct:sync_fence_info_data
55 int32_t status; member in struct:sync_pt_info
  /system/libhwbinder/vts/performance/
Benchmark_binder.cpp 42 using android::binder::Status;
58 Status sendVec(const vector<uint8_t>& data, vector<uint8_t>* _aidl_return) {
60 return Status::ok();
82 status_t status = getService(String16(kServiceName), &service); local
83 if (status != OK) {
  /system/nfc/src/static-lib-adapt/
ProtoDispBluetoothHci.c 110 uint8_t len = p[1], status = p[5]; local
121 ScrLog(HCI_GEN_TRACE, "%40s : %d (0x%02x) %s", "Status", status, status,
122 (status == 0) ? "Success" : "");
  /system/nvram/core/
persistence.cpp 46 storage::Status EncodeObject(const Object& object, Blob* blob) {
53 return storage::Status::kStorageError;
55 return storage::Status::kSuccess;
67 storage::Status DecodeObject(const Blob& blob, Object* object) {
74 return storage::Status::kStorageError;
76 return storage::Status::kSuccess;
99 storage::Status LoadHeader(NvramHeader* header) {
101 storage::Status status = storage::LoadHeader(&blob); local
102 if (status != storage::Status::kSuccess)
110 storage::Status status = EncodeObject<kHeaderMagic>(header, &blob); local
119 storage::Status status = storage::LoadSpace(index, &blob); local
128 storage::Status status = EncodeObject<kSpaceMagic>(space, &blob); local
    [all...]
  /system/security/keystore/
keystore_attestation_id.h 38 ::android::status_t status() const { return _status; } function in class:android::security::StatusOr
  /system/tools/hidl/
generateVts.cpp 36 status_t status = iface->emitVtsAttributeDeclaration(out); local
37 if (status != OK) {
38 return status;
48 status_t status = type->emitVtsTypeDeclarations(out); local
49 if (status != OK) {
50 return status;
117 status_t status = emitVtsTypeDeclarations(out); local
118 if (status != OK) {
119 return status;
124 status_t status = superInterface->emitVtsMethodDeclaration(out) local
133 status_t status = emitVtsTypeDeclarations(out); local
    [all...]
  /system/tpm/tpm_manager/client/
binder_proxy_helper.h 28 using BinderMethodType = base::Callback<android::binder::Status(
56 android::binder::Status status = method_.Run(request_bytes, observer); local
57 if (!status.isOk()) {
58 LOG(ERROR) << "BinderProxyHelper: Binder error: " << status.toString8();
72 android::binder::Status OnCommandResponse(
82 return android::binder::Status::ok();
  /system/tpm/trunks/
trunks_binder_proxy.cc 41 android::binder::Status OnCommandResponse(
51 return android::binder::Status::ok();
87 android::binder::Status status = local
89 if (!status.isOk()) {
90 LOG(ERROR) << "TrunksBinderProxy: Binder error: " << status.toString8();
107 android::binder::Status status = trunks_service_->SendCommandAndWait( local
109 if (!status.isOk()) {
110 LOG(ERROR) << "TrunksBinderProxy: Binder error: " << status.toString8()
    [all...]
trunks_binder_service.cc 77 android::binder::Status TrunksBinderService::BinderServiceInternal::SendCommand(
87 return android::binder::Status::ok();
90 return android::binder::Status::ok();
98 android::binder::Status status = client->OnCommandResponse(binder_response); local
99 if (!status.isOk()) {
101 << status.toString8();
105 android::binder::Status
113 return android::binder::Status::ok();
117 return android::binder::Status::ok()
    [all...]
  /system/update_engine/update_manager/
update_manager-inl.h 56 EvalStatus status = (policy_.get()->*policy_method)(ec, state_.get(), &error, local
59 if (status == EvalStatus::kFailed) {
63 status = (default_policy_.*policy_method)(ec, state_.get(), &error, result,
65 if (status == EvalStatus::kFailed) {
67 } else if (status == EvalStatus::kAskMeAgainLater) {
70 status = EvalStatus::kFailed;
76 return status;
82 base::Callback<void(EvalStatus status, const R& result)> callback,
89 EvalStatus status = EvaluatePolicy(ec.get(), policy_method, &result, args...); local
91 if (status != EvalStatus::kAskMeAgainLater)
    [all...]
  /system/vold/
NetlinkManager.cpp 96 int status = 0; local
100 status = -1;
108 return status;
  /test/vts/drivers/hal/common/binder/
VtsFuzzerBinderService.cpp 66 alog << "BpVtsFuzzer::Status request parcel:\n"
74 alog << "BpVtsFuzzer::Status response parcel:\n"
80 status_t status = reply.readInt32(&res); local
82 printf("driver->agent: LoadHal returns %d\n", status);
86 int32_t BpVtsFuzzer::Status(int32_t type) {
94 alog << "BpVtsFuzzer::Status request parcel:\n"
99 remote()->transact(STATUS, data, &reply);
102 alog << "BpVtsFuzzer::Status response parcel:\n"
  /test/vts-testcase/hal/thermal/V1_0/target_stress/
thermal_hidl_stress_test.cpp 52 std::cv_status status = std::cv_status::no_timeout; local
55 status = cv_.wait_until(lock, now + std::chrono::seconds(TIMEOUT_PERIOD));
56 if (status == std::cv_status::timeout) return status;
59 return status;
73 [&](ThermalStatus status, hidl_vec<Temperature> /* temperatures */) {
74 EXPECT_EQ(ThermalStatusCode::SUCCESS, status.code);
88 [&](ThermalStatus status, hidl_vec<CpuUsage> /* cpuUsages */) {
89 EXPECT_EQ(ThermalStatusCode::SUCCESS, status.code);
103 [&](ThermalStatus status, hidl_vec<CoolingDevice> /* coolingDevice */)
    [all...]
  /toolchain/binutils/binutils-2.25/libiberty/
pex-djgpp.c 123 int status; local
205 status = (((flags & PEX_SEARCH) != 0 ? spawnvpe : spawnve)
208 status = (((flags & PEX_SEARCH) != 0 ? spawnvp : spawnv)
211 if (status == -1)
266 /* Save the exit status for later. When we are called, obj->count
271 statuses[obj->count] = status;
279 status. */
282 pex_djgpp_wait (struct pex_obj *obj, pid_t pid, int *status,
293 *status = statuses[pid];
  /toolchain/binutils/binutils-2.25/opcodes/
i370-dis.c 35 int status; local
40 status = (*info->read_memory_func) (memaddr, buffer, 6, info);
41 if (status != 0)
43 (*info->memory_error_func) (status, memaddr, info);
moxie-dis.c 46 int status; local
53 if ((status = info->read_memory_func (addr, buffer, 2, info)))
83 if ((status = info->read_memory_func (addr + 2, buffer, 4, info)))
97 if ((status = info->read_memory_func (addr + 2, buffer, 4, info)))
110 if ((status = info->read_memory_func (addr + 2, buffer, 4, info)))
132 if ((status = info->read_memory_func (addr + 2, buffer, 4, info)))
146 if ((status = info->read_memory_func (addr+2, buffer, 4, info)))
162 if ((status = info->read_memory_func (addr+2, buffer, 4, info)))
227 info->memory_error_func (status, addr, info);
tilegx-dis.c 37 int status, i, num_instructions, num_printed; local
40 status = (*info->read_memory_func) (memaddr, opbuf,
42 if (status != 0)
44 (*info->memory_error_func) (status, memaddr, info);
  /packages/apps/DocumentsUI/app-perf-tests/src/com/android/documentsui/
FilesAppPerfTest.java 86 final Bundle status = new Bundle(); local
89 status.putDouble(key, median);
91 getInstrumentation().sendStatus(Activity.RESULT_OK, status);

Completed in 727 milliseconds

<<21222324252627282930>>