Searched refs:rc (Results 51 - 75 of 81) sorted by relevance

1234

/frameworks/base/packages/SystemUI/src/com/android/keyguard/
H A DKeyguardSliceView.java190 RowContent rc = new RowContent(getContext(), item, true /* showStartItem */);
203 if (rc.getPrimaryAction() != null) {
204 pendingIntent = rc.getPrimaryAction().getAction();
208 final SliceItem titleItem = rc.getTitleItem();
210 button.setContentDescription(rc.getContentDescription());
/frameworks/base/core/jni/
H A Dandroid_util_Process.cpp224 int rc = read(fd, cmdline, sizeof(cmdline)-1); local
225 cmdline[rc] = 0;
484 int rc = sched_setscheduler(tid, policy, &param); local
485 if (rc) {
511 int rc = androidSetThreadPriority(pid, pri); local
512 if (rc != 0) {
513 if (rc == INVALID_OPERATION) {
/frameworks/base/cmds/incidentd/
H A DAndroid.mk87 LOCAL_INIT_RC := incidentd.rc
/frameworks/native/cmds/atrace/
H A Datrace.cpp1032 ssize_t rc; local
1033 while ((rc = TEMP_FAILURE_RETRY(read(traceFD, buf, sizeof(buf)))) > 0) {
1034 if (!android::base::WriteFully(outFd, buf, rc)) {
1039 if (rc == -1) {
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DPhone.java3323 * @param rc the phone radio capability defined in
3327 public void setRadioCapability(RadioCapability rc, Message response) { argument
3328 mCi.setRadioCapability(rc, response);
3337 final RadioCapability rc = getRadioCapability();
3338 return (rc == null ? RadioAccessFamily.RAF_UNKNOWN : rc.getRadioAccessFamily());
3347 final RadioCapability rc = getRadioCapability();
3348 return (rc == null ? "" : rc.getLogicalModemUuid());
3366 * @param rc th
3368 radioCapabilityUpdated(RadioCapability rc) argument
[all...]
H A DRadioResponse.java1179 android.hardware.radio.V1_0.RadioCapability rc) {
1183 RadioCapability ret = RIL.convertHalRadioCapability(rc, mRil);
1199 android.hardware.radio.V1_0.RadioCapability rc) {
1200 responseRadioCapability(responseInfo, rc);
2019 android.hardware.radio.V1_0.RadioCapability rc) {
2023 RadioCapability ret = RIL.convertHalRadioCapability(rc, mRil);
1178 getRadioCapabilityResponse(RadioResponseInfo responseInfo, android.hardware.radio.V1_0.RadioCapability rc) argument
1198 setRadioCapabilityResponse(RadioResponseInfo responseInfo, android.hardware.radio.V1_0.RadioCapability rc) argument
2018 responseRadioCapability(RadioResponseInfo responseInfo, android.hardware.radio.V1_0.RadioCapability rc) argument
H A DInboundSmsHandler.java1356 int rc = getResultCode();
1357 if ((rc != Activity.RESULT_OK) && (rc != Intents.RESULT_SMS_HANDLED)) {
1358 loge("a broadcast receiver set the result code to " + rc
H A DRIL.java3473 public void setRadioCapability(RadioCapability rc, Message response) { argument
3481 + " RadioCapability = " + rc.toString());
3487 halRc.session = rc.getSession();
3488 halRc.phase = rc.getPhase();
3489 halRc.raf = rc.getRadioAccessFamily();
3490 halRc.logicalModemUuid = convertNullToEmptyString(rc.getLogicalModemUuid());
3491 halRc.status = rc.getStatus();
4462 RadioCapability rc = new RadioCapability(mPhoneId.intValue(), 0, 0, raf,
4465 return rc;
5203 RadioCapability rc
[all...]
H A DRadioIndication.java773 android.hardware.radio.V1_0.RadioCapability rc) {
776 RadioCapability response = RIL.convertHalRadioCapability(rc, mRil);
772 radioCapabilityIndication(int indicationType, android.hardware.radio.V1_0.RadioCapability rc) argument
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Dmp4enc_api.cpp1053 video->rc[idx] =
1056 if (video->rc[idx] == NULL) goto CLEAN_UP;
1058 M4VENC_MEMSET(video->rc[idx], 0, sizeof(rateControl));
1125 video->encParams->rc[0]->totalFrameNumber);
1274 RC_Cleanup(video->rc, video->encParams->nLayers);
1278 if (video->rc[idx])
1279 M4VENC_FREE(video->rc[idx]);
2708 { /* update rc->Nr, rc->B, (rc
[all...]
H A Dmp4lib_int.h264 Int target_bits; /* target bits for current frame, = rc->T */
265 Int actual_bits; /* actual bits for current frame obtained after encoding, = rc->Rc*/
266 Int QP; /* quantization level for current frame, = rc->Qc*/
347 rateControl *rc[4]; /* Pointer to Rate Control structure*/ member in struct:tagVideoEncData
/frameworks/av/services/camera/libcameraservice/device3/
H A DCamera3StreamSplitter.cpp285 auto rc = gbp->detachBuffer(i); local
286 if (rc != NO_ERROR) {
H A DCamera3Device.cpp2351 auto rc = internalPauseAndWaitLocked(maxExpectedDuration); local
2352 if (rc == NO_ERROR) {
2354 rc = configureStreamsLocked(mOperatingMode, sessionParams, /*notifyRequestThread*/ false);
2355 if (rc == NO_ERROR) {
2366 __FUNCTION__, rc);
2369 ALOGE("%s: Failed to pause streaming: %d", __FUNCTION__, rc);
2560 auto rc = mPreparerThread->resume(); local
2561 if (rc != OK) {
2563 return rc;
/frameworks/av/media/libstagefright/codecs/amrwbenc/inc/
H A Dacelp.h55 Word16 rc[], /* (o) Q15 : rc[M] Reflection coefficients. */
/frameworks/av/services/soundtrigger/
H A DSoundTriggerHwService.cpp56 int rc; local
66 rc = halInterface->getProperties(&descriptor.properties);
67 if (rc != 0) {
H A DSoundTriggerHalHidl.cpp120 hidlReturn = soundtrigger->getProperties([&](int rc, auto res) {
121 ret = rc;
/frameworks/base/media/java/android/media/
H A DRemoteController.java507 public EventHandler(RemoteController rc, Looper looper) { argument
/frameworks/native/cmds/installd/
H A DInstalldNativeService.cpp843 int rc = android_fork_execvp(ARRAY_SIZE(argv), argv, NULL, false, true); local
844 if (rc != 0) {
845 res = error(rc, "Failed copying " + from + " to " + to);
889 int rc = android_fork_execvp(ARRAY_SIZE(argv), argv, NULL, false, true); local
890 if (rc != 0) {
891 res = error(rc, "Failed copying " + from + " to " + to);
902 int rc = android_fork_execvp(ARRAY_SIZE(argv), argv, NULL, false, true); local
903 if (rc != 0) {
904 res = error(rc, "Failed copying " + from + " to " + to);
/frameworks/base/cmds/statsd/
H A DAndroid.mk152 LOCAL_INIT_RC := statsd.rc
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/mocks/
H A DPhoneMock.java952 public void setRadioCapability(RadioCapability rc, Message response) { argument
968 public void radioCapabilityUpdated(RadioCapability rc) { argument
/frameworks/base/services/core/java/com/android/server/content/
H A DContentService.java221 int rc = pidCounts.get(rhs);
222 if (lc < rc) {
224 } else if (lc > rc) {
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
H A DImsPhoneCommandInterface.java611 public void setRadioCapability(RadioCapability rc, Message response) { argument
/frameworks/av/services/audioflinger/
H A DAudioFlinger.cpp1806 int rc = mDevicesFactoryHal->openDevice(name, &dev); local
1807 if (rc) {
1808 ALOGE("loadHwModule() error %d loading module %s", rc, name);
1813 rc = dev->initCheck();
1815 if (rc) {
1816 ALOGE("loadHwModule() init check error %d for module %s", rc, name);
/frameworks/native/cmds/dumpstate/
H A Ddumpstate.cpp775 int rc = TEMP_FAILURE_RETRY(poll(&pfd, 1, time_left_ms())); local
776 if (rc < 0) {
780 } else if (rc == 0) {
/frameworks/av/media/libstagefright/codecs/amrwbenc/src/
H A DvoAMRWBEnc.c176 Word16 rc[M]; /* Reflection coefficients. */ local
405 Levinson(r_h, r_l, A, rc, st->mem_levinson); /* Levinson Durbin */

Completed in 502 milliseconds

1234