HomeSort by relevance Sort by last modified time
    Searched refs:halResult (Results 1 - 7 of 7) sorted by null

  /frameworks/base/services/core/jni/BroadcastRadio/
convert.h 62 bool __ThrowIfFailed(JNIEnv *env, const V1_0::Result halResult);
63 bool __ThrowIfFailed(JNIEnv *env, const V1_1::ProgramListResult halResult);
66 bool ThrowIfFailed(JNIEnv *env, const hardware::Return<void> &hidlResult, const T halResult) {
67 return __ThrowIfFailedHidl(env, hidlResult) || __ThrowIfFailed(env, halResult);
Tuner.cpp 259 Result halResult;
261 halResult = result;
264 if (convert::ThrowIfFailed(env, hidlResult, halResult)) {
351 Result halResult;
356 halResult = result;
363 halResult = result;
370 convert::ThrowIfFailed(env, hidlResult, halResult);
382 auto halResult = halTuner->startBackgroundScan();
384 if (halResult.isOk() && halResult == ProgramListResult::UNAVAILABLE) return false
    [all...]
BroadcastRadioService.cpp 163 Result halResult = Result::OK;
172 halResult = result;
177 if (convert::ThrowIfFailed(env, hidlResult, halResult)) return nullptr;
223 Result halResult;
228 halResult = result;
231 if (!hidlResult.isOk() || halResult != Result::OK || halTuner == nullptr) {
233 ALOGE_IF(hidlResult.isOk(), "halResult = %d", halResult);
convert.cpp 162 bool __ThrowIfFailed(JNIEnv *env, const Result halResult) {
163 switch (halResult) {
181 + std::to_string(static_cast<int32_t>(halResult)));
186 bool __ThrowIfFailed(JNIEnv *env, const ProgramListResult halResult) {
187 switch (halResult) {
199 return __ThrowIfFailed(env, static_cast<Result>(halResult));
  /hardware/interfaces/broadcastradio/1.0/vts/functional/
VtsHalBroadcastradioV1_0TargetTest.cpp 299 Result halResult = Result::NOT_INITIALIZED;
301 halResult = result;
308 EXPECT_EQ(Result::OK, halResult);
315 if (hidlReturn.isOk() && halResult == Result::OK) {
328 Result halResult = Result::NOT_INITIALIZED;
330 halResult = result;
337 EXPECT_EQ(Result::OK, halResult);
351 Result halResult = Result::NOT_INITIALIZED;
354 halResult = result;
360 return ((halResult == Result::OK) && (halConfig.antennaConnected == true))
    [all...]
  /hardware/interfaces/audio/effect/2.0/default/
Effect.cpp 300 uint32_t halResult[alignedSizeIn<uint32_t>(sizeof(uint32_t) + configSize)];
301 memset(halResult, 0, sizeof(halResult));
306 &halResultSize, halResult,
308 [&]{ onSuccess(&halResult[1]); });
344 uint8_t halResult[halResultSize];
345 memset(&halResult[0], 0, halResultSize);
349 &halResultSize, &halResult[0],
352 uint32_t *halResult32 = reinterpret_cast<uint32_t*>(&halResult[0]);
543 uint32_t halResult[volumes.size()]
    [all...]
  /hardware/interfaces/broadcastradio/1.1/vts/functional/
VtsHalBroadcastradioV1_1TargetTest.cpp 194 Result halResult = Result::NOT_INITIALIZED;
196 halResult = result;
204 EXPECT_EQ(Result::OK, halResult);
210 Result halResult = Result::NOT_INITIALIZED;
212 halResult = result;
215 EXPECT_EQ(Result::OK, halResult);

Completed in 657 milliseconds