/frameworks/compile/libbcc/include/bcc/ |
D | Script.h | 67 return getSource().getCompilerVersion(); in getCompilerVersion() 114 inline Source &getSource() { return *mSource; } in getSource() function 115 inline const Source &getSource() const { return *mSource; } in getSource() function
|
/frameworks/av/media/libmediaplayerservice/nuplayer/ |
D | StreamingSource.cpp | 195 sp<AnotherPacketSource> audioTrack = getSource(true /*audio*/); in haveSufficientDataOnAllTracks() 196 sp<AnotherPacketSource> videoTrack = getSource(false /*audio*/); in haveSufficientDataOnAllTracks() 226 sp<AnotherPacketSource> NuPlayer::StreamingSource::getSource(bool audio) { in getSource() function in android::NuPlayer::StreamingSource 231 sp<MediaSource> source = mTSParser->getSource( in getSource() 238 sp<AnotherPacketSource> source = getSource(audio); in getFormat() 260 sp<AnotherPacketSource> source = getSource(audio); in dequeueAccessUnit()
|
D | RTSPSource.cpp | 173 sp<AnotherPacketSource> source = getSource(audio); in getFormatMeta() 224 sp<AnotherPacketSource> source = getSource(audio); in dequeueAccessUnit() 270 sp<AnotherPacketSource> NuPlayer::RTSPSource::getSource(bool audio) { in getSource() function in android::NuPlayer::RTSPSource 272 sp<MediaSource> source = mTSParser->getSource( in getSource() 427 sp<AnotherPacketSource> source = getSource(audio); in signalSourceEOS() 432 source = getSource(video); in signalSourceEOS() 439 sp<AnotherPacketSource> source = getSource(audio); in sourceReachedEOS() 447 sp<AnotherPacketSource> source = getSource(audio); in sourceNearEOS() 589 sp<AnotherPacketSource> source = getSource(true /* audio */); in onMessageReceived() 595 source = getSource(false /* video */); in onMessageReceived()
|
D | StreamingSource.h | 69 sp<AnotherPacketSource> getSource(bool audio);
|
/frameworks/base/cmds/input/src/com/android/commands/input/ |
D | Input.java | 82 inputSource = getSource(inputSource, InputDevice.SOURCE_KEYBOARD); in run() 90 inputSource = getSource(inputSource, InputDevice.SOURCE_KEYBOARD); in run() 104 inputSource = getSource(inputSource, InputDevice.SOURCE_TOUCHSCREEN); in run() 111 inputSource = getSource(inputSource, InputDevice.SOURCE_TOUCHSCREEN); in run() 124 inputSource = getSource(inputSource, InputDevice.SOURCE_TOUCHSCREEN); in run() 136 inputSource = getSource(inputSource, InputDevice.SOURCE_TRACKBALL); in run() 142 inputSource = getSource(inputSource, InputDevice.SOURCE_TRACKBALL); in run() 189 if (source != e.getSource()) { in sendText() 317 private static final int getSource(int inputSource, int defaultSource) { in getSource() method in Input
|
/frameworks/base/services/core/java/com/android/server/hdmi/ |
D | OneTouchRecordAction.java | 80 if (mState != STATE_WAITING_FOR_RECORD_STATUS || mRecorderAddress != cmd.getSource()) { in processCommand() 93 if (cmd.getSource() != mRecorderAddress) { in handleRecordStatus() 99 Slog.i(TAG, "Got record status:" + recordStatus + " from " + cmd.getSource()); in handleRecordStatus()
|
D | DeviceDiscoveryAction.java | 250 if (current.mLogicalAddress != cmd.getSource()) { in handleReportPhysicalAddress() 252 cmd.getSource()); in handleReportPhysicalAddress() 276 if (current.mLogicalAddress != cmd.getSource()) { 278 cmd.getSource()); 299 if (current.mLogicalAddress != cmd.getSource()) { 301 cmd.getSource());
|
D | DelayedMessageBuffer.java | 111 if (message.getSource() != address) { in processMessagesForDevice() 141 && message.getSource() == address) { in processActiveSource()
|
D | HdmiCecLocalDeviceTv.java | 470 int logicalAddress = message.getSource(); in handleActiveSource() 497 if (getActiveSource().logicalAddress != message.getSource()) { in handleInactiveSource() 507 HdmiDeviceInfo inactiveSource = getCecDeviceInfo(message.getSource()); in handleInactiveSource() 567 int address = message.getSource(); in handleReportPhysicalAddress() 594 updateDevicePowerStatus(command.getSource(), newStatus); in handleReportPowerStatus() 737 int source = message.getSource(); in handleSetOsdName() 1073 if (!canStartArcUpdateAction(message.getSource(), true)) { in handleInitiateArc() 1080 if (!isConnectedToArcPort(message.getSource())) { in handleInitiateArc() 1090 message.getSource(), true); in handleInitiateArc() 1124 message.getSource(), false); in handleTerminateArc() [all …]
|
D | HdmiCecLocalDevice.java | 353 message.getSource(), version); in handleGetCecVersion() 395 mAddress, message.getSource(), mDeviceInfo.getDisplayName()); in handleGiveOsdName() 536 mAddress, message.getSource(), mService.getPowerStatus())); in handleGiveDevicePowerStatus() 543 mAddress, message.getSource(), Constants.MENU_STATE_ACTIVATED)); in handleMenuRequest() 552 if (!mService.invokeVendorCommandListenersOnReceived(mDeviceType, message.getSource(), in handleVendorCommand() 565 if (!mService.invokeVendorCommandListenersOnReceived(mDeviceType, message.getSource(), in handleVendorCommandWithId() 570 message.getSource() != Constants.ADDR_UNREGISTERED) { in handleVendorCommandWithId()
|
D | HdmiCecMessageCache.java | 90 int source = message.getSource(); in cacheMessage()
|
D | SystemAudioAutoInitiationAction.java | 63 || mAvrAddress != cmd.getSource()) { in processCommand()
|
D | DevicePowerStatusAction.java | 77 || mTargetAddress != cmd.getSource()) { in processCommand()
|
/frameworks/compile/libbcc/lib/ |
D | Compiler.cpp | 282 transformPasses.run(script.getSource().getModule()); in runPasses() 295 codeGenPasses.run(script.getSource().getModule()); in runPasses() 303 llvm::Module &module = script.getSource().getModule(); in compile() 370 llvm::Module &module = script.getSource().getModule(); in addInternalizeSymbolsPass() 465 if (script.getSource().getDebugInfoEnabled()) in addDebugInfoPass() 489 llvm::Module &module = script.getSource().getModule(); in screenGlobalFunctions() 517 pPM.run(script.getSource().getModule()); in translateGEPs()
|
/frameworks/support/compat/java/android/support/v4/view/ |
D | MotionEventCompat.java | 544 public static int getSource(MotionEvent event) { in getSource() method in MotionEventCompat 545 return event.getSource(); in getSource() 554 return (event.getSource() & source) == source; in isFromSource()
|
/frameworks/base/core/java/android/view/ |
D | InputEvent.java | 75 public abstract int getSource(); in getSource() method in InputEvent 94 return (getSource() & source) == source; in isFromSource()
|
D | InputEventConsistencyVerifier.java | 180 } else if ((motionEvent.getSource() & InputDevice.SOURCE_CLASS_TRACKBALL) != 0) { in onInputEvent() 207 final int source = event.getSource(); in onKeyEvent() 268 final int source = event.getSource(); in onTrackballEvent() 343 final int source = event.getSource(); in onTouchEvent() 472 final int source = event.getSource(); in onGenericMotionEvent() 594 final int source = keyEvent.getSource(); in onUnhandledEvent() 604 } else if ((motionEvent.getSource() & InputDevice.SOURCE_CLASS_TRACKBALL) != 0) { in onUnhandledEvent()
|
/frameworks/base/location/java/android/location/ |
D | Country.java | 124 public final int getSource() { in getSource() method in Country 169 return mCountryIso.equals(c.getCountryIso()) && mSource == c.getSource(); in equals()
|
/frameworks/av/media/libstagefright/mpeg2ts/ |
D | MPEG2TSExtractor.cpp | 198 (AnotherPacketSource *)mParser->getSource( in init() 216 (AnotherPacketSource *)mParser->getSource( in init() 256 ? (AnotherPacketSource *)mParser->getSource( in init() 258 : (AnotherPacketSource *)mParser->getSource( in init() 416 (AnotherPacketSource *)mParser->getSource(type).get(); in estimateDurationsFromTimesUsAtEnd() 444 sp<AnotherPacketSource> src = (AnotherPacketSource *)mParser->getSource(t).get(); in estimateDurationsFromTimesUsAtEnd()
|
/frameworks/base/tests/testables/src/android/testing/ |
D | TestableLooper.java | 273 throw e.getSource(); in invokeExplosively() 278 throw ((LooperException) re.getCause()).getSource(); in invokeExplosively() 316 public Throwable getSource() { in getSource() method in TestableLooper.LooperFrameworkMethod.LooperException
|
/frameworks/base/services/core/java/com/android/server/location/ |
D | ComprehensiveCountryDetector.java | 320 "(source: " + detectedCountry.getSource() in runAfterDetection() 328 || detectedCountry.getSource() > Country.COUNTRY_SOURCE_LOCATION) in runAfterDetection() 339 || detectedCountry.getSource() >= Country.COUNTRY_SOURCE_LOCATION) { in runAfterDetection()
|
/frameworks/base/services/core/java/com/android/server/wm/ |
D | PointerEventDispatcher.java | 42 && (event.getSource() & InputDevice.SOURCE_CLASS_POINTER) != 0) { in onInputEvent()
|
/frameworks/base/packages/StatementService/src/com/android/statementservice/retriever/ |
D | Statement.java | 63 public AbstractAsset getSource() { in getSource() method in Statement
|
/frameworks/base/tests/MusicServiceDemo/src/com/example/android/musicservicedemo/browser/ |
D | MusicTrack.java | 94 public String getSource() { in getSource() method in MusicTrack
|
/frameworks/support/compat/java/android/support/v4/view/accessibility/ |
D | AccessibilityRecordCompat.java | 218 public AccessibilityNodeInfoCompat getSource() { in getSource() method in AccessibilityRecordCompat 219 return AccessibilityNodeInfoCompat.wrapNonNullInstance(mRecord.getSource()); in getSource()
|