Searched refs:extra (Results 76 - 100 of 104) sorted by last modified time

12345

/frameworks/base/core/java/com/android/internal/app/
H A DIBatteryStats.aidl94 void noteConnectivityChanged(int type, String extra);
/frameworks/base/core/java/com/android/internal/os/
H A DBatteryStatsImpl.java2682 D: indicates that extra history details follow.
4177 public void noteConnectivityChangedLocked(int type, String extra) { argument
4181 extra, type);
/frameworks/base/core/java/com/android/internal/widget/
H A DLinearLayoutManager.java410 * <p>Returns the amount of extra space that should be laid out by LayoutManager.</p>
412 * <p>By default, {@link com.android.internal.widget.LinearLayoutManager} lays out 1 extra page
418 * location, where 1) the extra content helps LinearLayoutManager know in advance when its
422 * <p>Extending the extra layout space is especially expensive if done while the user may change
423 * scrolling direction. Changing direction will cause the extra layout space to swap to the
427 * @return The extra space that should be laid out (in pixels).
502 // LLM may decide to layout items for "extra" pixels to account for scrolling target,
506 final int extra = getExtraLayoutSpace(state);
507 // If the previous scroll delta was less than zero, the extra space should be laid out
510 extraForEnd = extra;
[all...]
/frameworks/av/media/libstagefright/httplive/
H A DLiveSession.cpp371 sp<AMessage> extra; local
372 if (!(*accessUnit)->meta()->findMessage("extra", &extra)) {
373 extra.clear();
376 ALOGI("[%s] read discontinuity of type %d, extra = %s",
379 extra == NULL ? "NULL" : extra->debugString().c_str());
2019 // Check if new variant contains extra streams.
2030 ALOGW("swapping extra stream type %d %s to empty stream",
H A DPlaylistFetcher.cpp824 ATSParser::DiscontinuityType type, const sp<AMessage> &extra) {
829 type, extra, false /* discard */);
857 // a playlist we might assume extra streams.
1278 NULL /* extra */);
1692 sp<AMessage> extra = new AMessage; local
1695 extra->setInt64(IStreamListener::kKeyMediaTimeUs, 0);
1700 extra->setInt64(IStreamListener::kKeyRecentMediaTimeUs, mStartTimeUs);
1704 ATSParser::DISCONTINUITY_TIME, extra);
823 queueDiscontinuity( ATSParser::DiscontinuityType type, const sp<AMessage> &extra) argument
H A DPlaylistFetcher.h251 ATSParser::DiscontinuityType type, const sp<AMessage> &extra);
/frameworks/av/media/libstagefright/mpeg2ts/
H A DATSParser.cpp71 DiscontinuityType type, const sp<AMessage> &extra);
163 DiscontinuityType type, const sp<AMessage> &extra);
334 DiscontinuityType type, const sp<AMessage> &extra) {
337 && extra != NULL
338 && extra->findInt64(
344 mStreams.editValueAt(i)->signalDiscontinuity(type, extra);
977 DiscontinuityType type, const sp<AMessage> &extra) {
1005 if (extra != NULL
1006 && extra->findInt64(
1012 extra
333 signalDiscontinuity( DiscontinuityType type, const sp<AMessage> &extra) argument
976 signalDiscontinuity( DiscontinuityType type, const sp<AMessage> &extra) argument
1653 signalDiscontinuity( DiscontinuityType type, const sp<AMessage> &extra) argument
[all...]
H A DATSParser.h123 DiscontinuityType type, const sp<AMessage> &extra);
H A DAnotherPacketSource.cpp347 const sp<AMessage> &extra,
388 buffer->meta()->setMessage("extra", extra);
345 queueDiscontinuity( ATSParser::DiscontinuityType type, const sp<AMessage> &extra, bool discard) argument
H A DAnotherPacketSource.h69 const sp<AMessage> &extra,
H A DMPEG2TSExtractor.cpp553 sp<AMessage> extra(new AMessage);
554 extra->setInt64(IStreamListener::kKeyMediaTimeUs, actualSeekTimeUs);
555 mParser->signalDiscontinuity(ATSParser::DISCONTINUITY_TIME, extra);
/frameworks/av/media/ndk/
H A DNdkMediaDrm.cpp47 void notify(DrmPlugin::EventType eventType, int extra, const Parcel *obj);
64 void DrmListener::notify(DrmPlugin::EventType eventType, int extra, const Parcel *obj) { argument
105 (*mListener)(mObj, &sessionId, ndkEventType, extra, data, dataSize);
/frameworks/av/services/soundtrigger/
H A DSoundTriggerHalHidl.cpp388 const struct sound_trigger_phrase_recognition_extra *extra)
390 halExtra->id = extra->id;
391 halExtra->recognitionModes = extra->recognition_modes;
392 halExtra->confidenceLevel = extra->confidence_level;
394 new ConfidenceLevel[extra->num_levels];
395 for (unsigned int i = 0; i < extra->num_levels; i++) {
396 halLevels[i].userId = extra->levels[i].user_id;
397 halLevels[i].levelPercent = extra->levels[i].level;
399 halExtra->levels.setToExternal(halLevels, extra->num_levels);
401 halExtra->levels.resize(extra
386 convertPhraseRecognitionExtraToHal( PhraseRecognitionExtra *halExtra, const struct sound_trigger_phrase_recognition_extra *extra) argument
536 convertPhraseRecognitionExtraFromHal( struct sound_trigger_phrase_recognition_extra *extra, const PhraseRecognitionExtra *halExtra) argument
[all...]
H A DSoundTriggerHalHidl.h132 const struct sound_trigger_phrase_recognition_extra *extra);
139 struct sound_trigger_phrase_recognition_extra *extra,
/frameworks/av/cmds/stagefright/
H A Dstream.cpp104 sp<AMessage> extra = new AMessage;
105 extra->setInt32(IStreamListener::kKeyFormatChange, 0);
108 IStreamListener::DISCONTINUITY, false /* synchronous */, extra);
/frameworks/av/drm/libmediadrm/
H A DDrm.cpp127 void Drm::sendEvent(DrmPlugin::EventType eventType, int extra, argument
141 listener->notify(eventType, extra, &obj);
H A DIDrmClient.cpp43 virtual void notify(DrmPlugin::EventType eventType, int extra, const Parcel *obj) argument
48 data.writeInt32(extra);
67 int extra = data.readInt32(); local
73 notify((DrmPlugin::EventType)eventType, extra, &obj);
/frameworks/av/drm/mediadrm/plugins/mock/
H A DMockDrmCryptoPlugin.cpp419 unsigned code, extra; local
420 sscanf(value.string(), "%d %d", &code, &extra);
435 (int)code, extra, pSessionId ? vectorToString(*pSessionId) : "{}",
438 sendEvent(eventType, extra, pSessionId, pData);
/frameworks/av/include/media/
H A DDrm.h130 virtual void sendEvent(DrmPlugin::EventType eventType, int extra,
H A DIDrmClient.h32 virtual void notify(DrmPlugin::EventType eventType, int extra, const Parcel *obj) = 0;
/frameworks/av/include/ndk/
H A DNdkMediaDrm.h84 AMediaDrmEventType eventType, int extra, const uint8_t *data, size_t dataSize);
/frameworks/av/media/libmedia/include/media/
H A DDrm.h130 virtual void sendEvent(DrmPlugin::EventType eventType, int extra,
H A DIDrmClient.h32 virtual void notify(DrmPlugin::EventType eventType, int extra, const Parcel *obj) = 0;
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DGenericSource.cpp1268 // Enabled for both video/audio so 1) media buffer is reused without extra copying
1475 sp<AMessage> extra = new AMessage; local
1476 extra->setInt64("resume-at-mediaTimeUs", seekTimeUs);
1477 meta->setMessage("extra", extra);
1522 track->mPackets->queueDiscontinuity(type, NULL /* extra */, true /* discard */);
H A DNuPlayerDecoder.cpp989 sp<AMessage> extra; local
990 if (buffer->meta()->findMessage("extra", &extra) && extra != NULL) {
992 if (extra->findInt64(

Completed in 440 milliseconds

12345