Searched defs:source (Results 201 - 225 of 325) sorted by relevance

1234567891011>>

/frameworks/av/media/libstagefright/
H A DStagefrightMetadataRetriever.cpp64 ALOGE("Unable to create data source for '%s'.", uri);
141 const sp<MediaSource> &source,
146 sp<MetaData> format = source->getFormat();
157 client->interface(), format, false, source,
365 sp<MediaSource> source = mExtractor->getTrack(i); local
367 if (source.get() == NULL) {
385 &mClient, trackMeta, source, OMXCodec::kPreferSoftwareCodecs,
392 frame = extractVideoFrameWithCodecFlags(&mClient, trackMeta, source, 0,
138 extractVideoFrameWithCodecFlags( OMXClient *client, const sp<MetaData> &trackMeta, const sp<MediaSource> &source, uint32_t flags, int64_t frameTimeUs, int seekMode) argument
H A DWAVExtractor.cpp92 WAVExtractor::WAVExtractor(const sp<DataSource> &source) argument
93 : mDataSource(source),
489 const sp<DataSource> &source, String8 *mimeType, float *confidence,
492 if (source->readAt(0, header, sizeof(header)) < (ssize_t)sizeof(header)) {
500 sp<MediaExtractor> extractor = new WAVExtractor(source);
488 SniffWAV( const sp<DataSource> &source, String8 *mimeType, float *confidence, sp<AMessage> *) argument
/frameworks/av/media/libstagefright/id3/
H A DID3.cpp33 ID3::ID3(const sp<DataSource> &source) argument
39 mIsValid = parseV2(source);
42 mIsValid = parseV1(source);
75 bool ID3::parseV2(const sp<DataSource> &source) { argument
85 if (source->readAt(
144 if (source->readAt(sizeof(header), mData, mSize) != (ssize_t)mSize) {
815 bool ID3::parseV1(const sp<DataSource> &source) { argument
819 if (source->getSize(&size) != OK || size < (off64_t)V1_TAG_SIZE) {
824 if (source->readAt(size - V1_TAG_SIZE, mData, V1_TAG_SIZE)
/frameworks/av/media/libstagefright/rtsp/
H A DAMPEG4AudioAssembler.cpp470 const sp<ARTPSource> &source) {
471 AssemblyStatus status = addPacket(source);
479 const sp<ARTPSource> &source) {
480 List<sp<ABuffer> > *queue = source->queue();
469 assembleMore( const sp<ARTPSource> &source) argument
478 addPacket( const sp<ARTPSource> &source) argument
H A DARTPConnection.cpp330 sp<ARTPSource> source = s->mSources.valueAt(i); local
332 source->addReceiverReport(buffer);
335 source->addFIR(buffer);
480 sp<ARTPSource> source = findSource(s, srcId); local
493 source->processRTPPacket(buffer);
589 sp<ARTPSource> source = findSource(s, id); local
591 source->byeReceived();
616 sp<ARTPSource> source = findSource(s, id); local
618 source->timeUpdate(rtpTime, ntpTime);
624 sp<ARTPSource> source; local
[all...]
H A DARTPWriter.cpp107 status_t ARTPWriter::addSource(const sp<MediaSource> &source) { argument
108 mSource = source;
/frameworks/base/core/java/android/content/pm/
H A DActivityInfo.java573 public ActivityInfo createFromParcel(Parcel source) {
574 return new ActivityInfo(source);
581 private ActivityInfo(Parcel source) { argument
582 super(source);
583 theme = source.readInt();
584 launchMode = source.readInt();
585 permission = source.readString();
586 taskAffinity = source.readString();
587 targetActivity = source.readString();
588 flags = source
[all...]
H A DApplicationInfo.java601 public ApplicationInfo createFromParcel(Parcel source) {
602 return new ApplicationInfo(source);
609 private ApplicationInfo(Parcel source) { argument
610 super(source);
611 taskAffinity = source.readString();
612 permission = source.readString();
613 processName = source.readString();
614 className = source.readString();
615 theme = source.readInt();
616 flags = source
[all...]
/frameworks/base/core/java/android/content/res/
H A DCompatibilityInfo.java582 public CompatibilityInfo createFromParcel(Parcel source) {
583 return new CompatibilityInfo(source);
591 private CompatibilityInfo(Parcel source) { argument
592 mCompatibilityFlags = source.readInt();
593 applicationDensity = source.readInt();
594 applicationScale = source.readFloat();
595 applicationInvertedScale = source.readFloat();
/frameworks/base/core/java/android/preference/
H A DDialogPreference.java449 public SavedState(Parcel source) { argument
450 super(source);
451 isDialogShowing = source.readInt() == 1;
452 dialogBundle = source.readBundle();
H A DVolumePreference.java187 public SavedState(Parcel source) { argument
188 super(source);
189 mVolumeStore.volume = source.readInt();
190 mVolumeStore.originalVolume = source.readInt();
/frameworks/base/core/java/android/view/
H A DInputEventConsistencyVerifier.java86 // The device id and source of the current stream of touch events.
203 final int source = event.getSource();
207 KeyState state = findKeyState(deviceId, source, keyCode, /*remove*/ false);
221 addKeyState(deviceId, source, keyCode);
226 KeyState state = findKeyState(deviceId, source, keyCode, /*remove*/ true);
264 final int source = event.getSource();
265 if ((source & InputDevice.SOURCE_CLASS_TRACKBALL) != 0) {
339 final int source = event.getSource();
343 || mTouchEventStreamSource != source)) {
346 + ", previous source "
668 findKeyState(int deviceId, int source, int keyCode, boolean remove) argument
690 addKeyState(int deviceId, int source, int keyCode) argument
702 public int source; field in class:InputEventConsistencyVerifier.KeyState
709 obtain(int deviceId, int source, int keyCode) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DFrameLayout.java644 public LayoutParams(ViewGroup.LayoutParams source) { argument
645 super(source);
651 public LayoutParams(ViewGroup.MarginLayoutParams source) { argument
652 super(source);
H A DTableRow.java499 public LayoutParams(MarginLayoutParams source) { argument
500 super(source);
/frameworks/base/graphics/java/android/graphics/drawable/
H A DAnimatedRotateDrawable.java313 public AnimatedRotateState(AnimatedRotateState source, AnimatedRotateDrawable owner, argument
315 if (source != null) {
317 mDrawable = source.mDrawable.getConstantState().newDrawable(res);
319 mDrawable = source.mDrawable.getConstantState().newDrawable();
322 mPivotXRel = source.mPivotXRel;
323 mPivotX = source.mPivotX;
324 mPivotYRel = source.mPivotYRel;
325 mPivotY = source.mPivotY;
326 mFramesCount = source.mFramesCount;
327 mFrameDuration = source
[all...]
/frameworks/base/include/androidfw/
H A DInputTransport.h60 int32_t source; member in struct:android::InputMessage::Body::Key
78 int32_t source; member in struct:android::InputMessage::Body::Motion
201 int32_t source,
222 int32_t source,
344 // Batched motion events per device and source.
350 // Touch state per device and source, only for sources of class pointer.
374 int32_t source; member in struct:android::InputConsumer::TouchState
380 void initialize(int32_t deviceId, int32_t source) { argument
382 this->source = source;
[all...]
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
H A DMultiPaneChallengeLayout.java548 public LayoutParams(ViewGroup.LayoutParams source) { argument
549 super(source);
552 public LayoutParams(MarginLayoutParams source) { argument
553 super(source);
556 public LayoutParams(LayoutParams source) { argument
557 this((MarginLayoutParams) source);
559 centerWithinArea = source.centerWithinArea;
560 childType = source.childType;
561 gravity = source.gravity;
562 maxWidth = source
[all...]
/frameworks/base/test-runner/tests/src/android/test/
H A DInstrumentationTestRunnerTest.java176 private void assertContentsInOrder(List<TestDescriptor> actual, TestDescriptor... source) { argument
177 TestDescriptor[] clonedSource = source.clone();
/frameworks/native/opengl/tests/gl2_cameraeye/src/com/android/gl2cameraeye/
H A DGL2CameraEye.java295 // Can't do mipmapping with camera source
382 private int loadShader(int shaderType, String source) { argument
385 GLES20.glShaderSource(shader, source);
/frameworks/opt/vcard/java/com/android/vcard/
H A DVCardUtils.java94 public static String formatNumber(String source, int defaultFormattingType) { argument
95 final SpannableStringBuilder text = new SpannableStringBuilder(source);
/frameworks/support/v4/ics/android/support/v4/view/accessibility/
H A DAccessibilityNodeInfoCompatIcs.java34 public static Object obtain(View source) { argument
35 return AccessibilityNodeInfo.obtain(source);
208 public static void setSource(Object info, View source) { argument
209 ((AccessibilityNodeInfo) info).setSource(source);
/frameworks/support/v4/java/android/support/v4/view/accessibility/
H A DAccessibilityRecordCompat.java35 public void setSource(Object record, View source); argument
254 public void setSource(Object record, View source) { argument
465 public void setSource(Object record, View source) { argument
466 AccessibilityRecordCompatIcs.setSource(record, source);
556 * Sets the event source.
558 * @param source The source.
562 public void setSource(View source) { argument
563 IMPL.setSource(mRecord, source);
567 * Sets the source t
[all...]
/frameworks/wilhelm/src/android/
H A Dandroid_AudioSfDecoder.cpp181 // Instantiate and initialize the data source for the decoder
219 // AndroidBufferQueue data source is handled by a subclass,
226 // Instantiate and initialize the decoder attached to the data source
260 sp<MediaSource> source = extractor->getTrack(audioTrackIndex); local
261 sp<MetaData> meta = source->getFormat();
300 source = OMXCodec::Create(
302 source);
304 if (source == NULL) {
310 meta = source->getFormat();
314 if (source
[all...]
/frameworks/av/libvideoeditor/lvpp/
H A DVideoEditorAudioPlayer.cpp119 // source is able to stop().
161 // which might have changed with new audio source
260 void VideoEditorAudioPlayer::setSource(const sp<MediaSource> &source) { argument
263 // Before setting source, stop any existing source.
265 // source is able to stop().
284 mSource = source;
/frameworks/av/media/libmedia/
H A DIAudioPolicyService.cpp333 virtual bool isSourceActive(audio_source_t source) const
337 data.writeInt32((int32_t) source);
607 audio_source_t source = (audio_source_t) data.readInt32(); local
608 reply->writeInt32( isSourceActive(source));

Completed in 6400 milliseconds

1234567891011>>