Home
last modified time | relevance | path

Searched refs:mRecord (Results 1 – 16 of 16) sorted by relevance

/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
DSimTlv.java33 byte mRecord[]; field in SimTlv
44 mRecord = record; in SimTlv()
75 return mRecord[mCurOffset] & 0xff; in getTag()
88 System.arraycopy(mRecord, mCurDataOffset, ret, 0, mCurDataLength); in getData()
101 if (mRecord[mCurOffset] == 0 || (mRecord[mCurOffset] & 0xff) == 0xff) { in parseCurrentTlvObject()
105 if ((mRecord[mCurOffset + 1] & 0xff) < 0x80) { in parseCurrentTlvObject()
107 mCurDataLength = mRecord[mCurOffset + 1] & 0xff; in parseCurrentTlvObject()
109 } else if ((mRecord[mCurOffset + 1] & 0xff) == 0x81) { in parseCurrentTlvObject()
111 mCurDataLength = mRecord[mCurOffset + 2] & 0xff; in parseCurrentTlvObject()
/frameworks/av/media/libstagefright/
DAudioSource.cpp115 mRecord = new AudioRecord( in set()
131 mRecord->setCallerName("media"); in set()
132 mInitCheck = mRecord->initCheck(); in set()
134 mRecord.clear(); in set()
169 status_t err = mRecord->start(); in start()
173 mRecord.clear(); in start()
212 mRecord->stop(); in reset()
228 meta->setInt32(kKeyChannelCount, mRecord->channelCount()); in getFormat()
241 const int32_t nChannels = mRecord->channelCount(); in rampVolume()
355 if (mRecord->getTimestamp(&ts) == OK && in onMoreData()
[all …]
/frameworks/compile/slang/
Dslang_rs_reflection_state.h740 Record32() : mRecord(nullptr) { } in Record32()
743 if (!mRecord) in getRecordPostPadding()
745 return Val32(true, mRecord->mPostPadding); in getRecordPostPadding()
749 if (!mRecord) in getRecordAllocSize()
751 return Val32(true, mRecord->mAllocSize); in getRecordAllocSize()
755 if (!mRecord || idx >= mRecord->mFieldCount) in getFieldPreAndPostPadding()
757 const File::Record::Field &field = mRecord->mFields[idx]; in getFieldPreAndPostPadding()
762 if (!mRecord || idx >= mRecord->mFieldCount) in getFieldOffsetAndStoreSize()
764 const File::Record::Field &field = mRecord->mFields[idx]; in getFieldOffsetAndStoreSize()
769 Record32(const File::Record *Record) : mRecord(Record) { } in Record32()
[all …]
/frameworks/base/services/core/java/com/android/server/wm/
DPackageConfigPersister.java281 item.mRecord.mName == record.mName in removePackage()
282 && item.mRecord.mUserId == record.mUserId, in removePackage()
413 final PackageConfigRecord mRecord; field in PackageConfigPersister.WriteProcessItem
416 mRecord = record; in WriteProcessItem()
428 removeRecord(mPendingWrite, mRecord); in process()
435 File userConfigsDir = getUserConfigsDir(mRecord.mUserId); in process()
437 Slog.e(TAG, "Failure creating tasks directory for user " + mRecord.mUserId in process()
442 mRecord.mName + SUFFIX_FILE_NAME)); in process()
461 Slog.d(TAG, "Writing package configuration=" + mRecord); in saveToXml()
464 xmlSerializer.attribute(null, ATTR_PACKAGE_NAME, mRecord.mName); in saveToXml()
[all …]
DRemoteAnimationController.java534 private final RemoteAnimationRecord mRecord;
546 mRecord = record;
557 return mRecord.mBackdropColor;
595 if (mRecord.mAdapter == this) {
596 mRecord.mAdapter = null;
598 mRecord.mThumbnailAdapter = null;
600 if (mRecord.mAdapter == null && mRecord.mThumbnailAdapter == null) {
601 mPendingAnimations.remove(mRecord);
621 pw.print(prefix); pw.print("container="); pw.println(mRecord.mWindowContainer);
622 if (mRecord.mTarget != null) {
[all …]
/frameworks/wilhelm/src/android/
DAudioRecorder_to_android.cpp184 interface_lock_shared(&ar->mRecord); in audioRecorder_handleNewPos_lockRecord()
185 callback = ar->mRecord.mCallback; in audioRecorder_handleNewPos_lockRecord()
186 callbackPContext = ar->mRecord.mContext; in audioRecorder_handleNewPos_lockRecord()
187 interface_unlock_shared(&ar->mRecord); in audioRecorder_handleNewPos_lockRecord()
191 (*callback)(&ar->mRecord.mItf, callbackPContext, SL_RECORDEVENT_HEADATNEWPOS); in audioRecorder_handleNewPos_lockRecord()
201 interface_lock_shared(&ar->mRecord); in audioRecorder_handleMarker_lockRecord()
202 callback = ar->mRecord.mCallback; in audioRecorder_handleMarker_lockRecord()
203 callbackPContext = ar->mRecord.mContext; in audioRecorder_handleMarker_lockRecord()
204 interface_unlock_shared(&ar->mRecord); in audioRecorder_handleMarker_lockRecord()
208 (*callback)(&ar->mRecord.mItf, callbackPContext, SL_RECORDEVENT_HEADATMARKER); in audioRecorder_handleMarker_lockRecord()
[all …]
/frameworks/av/services/audioflinger/
DPatchPanel.cpp338 newPatch.mRecord.setThread(reinterpret_cast<RecordThread*>(thread.get())); in createAudioPatch()
466 mRecord.handle(), mPlayback.handle()); in ~Patch()
474 addSink(mRecord.thread(), { .source = AUDIO_SOURCE_MIC }).patch(), in createConnections()
475 mRecord.handlePtr(), in createConnections()
478 *mRecord.handlePtr() = AUDIO_PATCH_HANDLE_NONE; in createConnections()
503 audio_format_t inputFormat = mRecord.thread()->format(); in createConnections()
511 if (sampleRate == mRecord.thread()->sampleRate() && in createConnections()
512 inChannelMask == mRecord.thread()->channelMask() && in createConnections()
513 mRecord.thread()->fastTrackAvailable() && in createConnections()
514 mRecord.thread()->hasFastCapture()) { in createConnections()
[all …]
DPatchPanel.h173 mRecord = other.mRecord; in Patch()
188 swap(mRecord, other.mRecord); in swap()
200 return mRecord.handle() != AUDIO_PATCH_HANDLE_NONE || in isSoftware()
222 Endpoint<RecordThread, RecordThread::PatchRecord> mRecord; variable
DEffects.cpp3322 thread = patch.mRecord.thread(); in checkPort()
/frameworks/base/services/core/java/com/android/server/notification/
DValidateNotificationPeople.java630 private NotificationRecord mRecord; field in ValidateNotificationPeople.PeopleRankingReconsideration
700 if (mRecord != null) { in work()
701 mUsageStats.registerPeopleAffinity(mRecord, mContactAffinity > NONE, in work()
719 mRecord = record; in setRecord()
/frameworks/av/media/libstagefright/include/media/stagefright/
DAudioSource.h112 sp<AudioRecord> mRecord; member
/frameworks/wilhelm/src/itf/
DIBufferQueue.cpp34 state = ((CAudioRecorder *) thiz->mThis)->mRecord.mState; in getAssociatedState()
/frameworks/base/core/java/android/app/
DFragmentManager.java2090 int index = records.indexOf(listener.mRecord); in executePostponedTransaction()
2097 listener.mRecord.interactsWith(records, 0, records.size()))) { in executePostponedTransaction()
2103 (index = records.indexOf(listener.mRecord)) != -1 && in executePostponedTransaction()
3674 private final BackStackRecord mRecord; field in FragmentManagerImpl.StartEnterTransitionListener
3679 mRecord = record; in StartEnterTransitionListener()
3693 mRecord.mManager.scheduleCommit(); in onStartEnterTransition()
3721 FragmentManagerImpl manager = mRecord.mManager; in completeTransaction()
3730 mRecord.mManager.completeExecute(mRecord, mIsBack, !canceled, true); in completeTransaction()
3738 mRecord.mManager.completeExecute(mRecord, mIsBack, false, false); in cancelTransaction()
/frameworks/wilhelm/src/
Dclasses.h137 IRecord mRecord; member
Dclasses.cpp119 {MPH_RECORD, INTERFACE_IMPLICIT, offsetof(CAudioRecorder, mRecord)},
/frameworks/base/boot/hiddenapi/
Dhiddenapi-max-target-o.txt5107 Landroid/app/FragmentManagerImpl$StartEnterTransitionListener;->mRecord:Landroid/app/BackStackRecor…