HomeSort by relevance Sort by last modified time
    Searched refs:DataSource (Results 51 - 75 of 318) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/perfetto/src/tracing/core/
trace_config.cc 194 TraceConfig::DataSource::DataSource() = default;
195 TraceConfig::DataSource::~DataSource() = default;
196 TraceConfig::DataSource::DataSource(const TraceConfig::DataSource&) = default;
197 TraceConfig::DataSource& TraceConfig::DataSource::operator=(
198 const TraceConfig::DataSource&) = default
    [all...]
  /frameworks/support/paging/common/src/main/java/androidx/paging/
DataSource.java 34 * DataSource is queried to load pages of content into a {@link PagedList}. A PagedList can grow as
36 * modified, a new PagedList / DataSource pair must be created to represent the new data.
38 * PagedList queries data from its DataSource in response to loading hints. {@link PagedListAdapter}
41 * To control how and when a PagedList queries data from its DataSource, see
44 * A PagedList / DataSource pair are a snapshot of the data set. A new pair of
45 * PagedList / DataSource must be created if an update occurs, such as a reorder, insert, delete, or
46 * content update occurs. A DataSource must detect that it cannot continue loading its
48 * {@link #invalidate()}. Then a new PagedList / DataSource pair would be created to load data from
51 * To page in data that doesn't update, you can create a single DataSource, and pass it to a single
56 * {@link DataSource.Factory}, where each DataSource created is invalidated when an update to th
    [all...]
ContiguousDataSource.java 24 abstract class ContiguousDataSource<Key, Value> extends DataSource<Key, Value> {
  /frameworks/av/media/libstagefright/include/
StagefrightMetadataRetriever.h 28 class DataSource;
43 virtual status_t setDataSource(const sp<DataSource>& source, const char *mime);
59 sp<DataSource> mSource;
HTTPBase.h 21 #include <media/DataSource.h>
29 struct HTTPBase : public DataSource {
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
SsidSetStoreData.java 47 private final DataSource mDataSource;
52 public interface DataSource {
72 * @param dataSource The DataSource that implements the update and retrieval of the SSID set.
74 SsidSetStoreData(String name, DataSource dataSource) {
76 mDataSource = dataSource;
WakeupConfigStoreData.java 47 private final DataSource<Boolean> mIsActiveDataSource;
48 private final DataSource<Boolean> mIsOnboardedDataSource;
49 private final DataSource<Integer> mNotificationsDataSource;
50 private final DataSource<Set<ScanResultMatchInfo>> mNetworkDataSource;
58 public interface DataSource<T> {
79 DataSource<Boolean> isActiveDataSource,
80 DataSource<Boolean> isOnboardedDataSource,
81 DataSource<Integer> notificationsDataSource,
82 DataSource<Set<ScanResultMatchInfo>> networkDataSource) {
WakeupOnboarding.java 197 /** Returns the {@link WakeupConfigStoreData.DataSource} for the onboarded status. */
198 public WakeupConfigStoreData.DataSource<Boolean> getIsOnboadedDataSource() {
202 /** Returns the {@link WakeupConfigStoreData.DataSource} for the notification status. */
203 public WakeupConfigStoreData.DataSource<Integer> getNotificationsDataSource() {
207 private class IsOnboardedDataSource implements WakeupConfigStoreData.DataSource<Boolean> {
220 private class NotificationsDataSource implements WakeupConfigStoreData.DataSource<Integer> {
  /external/perfetto/protos/perfetto/config/
trace_config.proto 50 message DataSource {
66 repeated DataSource data_sources = 2;
  /frameworks/av/media/libstagefright/
DataSourceFactory.cpp 17 #define LOG_TAG "DataSource"
33 sp<DataSource> DataSourceFactory::CreateFromURI(
43 sp<DataSource> source;
99 sp<DataSource> DataSourceFactory::CreateFromFd(int fd, int64_t offset, int64_t length) {
104 sp<DataSource> DataSourceFactory::CreateMediaHTTP(const sp<MediaHTTPService> &httpService) {
ThrottledSource.cpp 25 const sp<DataSource> &source,
  /frameworks/base/core/java/android/util/apk/
ByteBufferDataSource.java 24 * {@link DataSource} which provides data from a {@link ByteBuffer}.
26 class ByteBufferDataSource implements DataSource {
  /frameworks/av/media/libmedia/include/media/
IMediaExtractor.h 21 #include <media/DataSource.h>
78 const sp<DataSource> &source,
MediaMetadataRetrieverInterface.h 29 class DataSource;
45 virtual status_t setDataSource(const sp<DataSource>& source, const char *mime) = 0;
IDataSource.h 30 // A binder interface for implementing a stagefright DataSource remotely.
33 DECLARE_META_INTERFACE(DataSource);
49 // Refer to DataSource:Flags for the definition of the flags.
  /frameworks/av/media/libmediaplayerservice/
MediaPlayerFactory.h 47 const sp<DataSource> &/*source*/,
65 const sp<DataSource> &source);
  /frameworks/av/media/libstagefright/include/media/stagefright/
FileSource.h 23 #include <media/DataSource.h>
30 class FileSource : public DataSource {
  /frameworks/support/paging/rxjava2/src/main/java/androidx/paging/
RxPagedListBuilder.java 36 * {@link DataSource.Factory} and a {@link PagedList.Config}.
46 * @param <Key> Type of input valued used to load data from the DataSource. Must be integer if
53 private DataSource.Factory<Key, Value> mDataSourceFactory;
63 * @param dataSourceFactory DataSource factory providing DataSource generations.
66 public RxPagedListBuilder(@NonNull DataSource.Factory<Key, Value> dataSourceFactory,
74 throw new IllegalArgumentException("DataSource.Factory must be provided");
89 * @param dataSourceFactory DataSource.Factory providing DataSource generations.
93 public RxPagedListBuilder(@NonNull DataSource.Factory<Key, Value> dataSourceFactory
    [all...]
  /tools/apksig/src/main/java/com/android/apksig/internal/util/
VerityTreeBuilder.java 21 import com.android.apksig.util.DataSource;
61 public byte[] generateVerityTreeRootHash(DataSource beforeApkSigningBlock,
62 DataSource centralDir, DataSource eocd) throws IOException {
97 byte[] generateVerityTreeRootHash(DataSource fileSource) throws IOException {
110 DataSource src;
169 private void digestDataByChunks(DataSource dataSource, DataSink dataSink) throws IOException {
170 long size = dataSource.size();
174 dataSource.copyTo(offset, CHUNK_SIZE, buffer)
    [all...]
  /frameworks/support/room/integration-tests/testapp/src/main/java/androidx/room/integration/testapp/
CustomerViewModel.java 25 import androidx.paging.DataSource;
88 K initialLoadKey, DataSource.Factory<K, Customer> dataSourceFactory) {
99 DataSource.Factory<K, Customer> dataSourceFactory) {
  /tools/apkzlib/src/main/java/com/android/tools/build/apkzlib/sign/
ZFileDataSource.java 20 import com.android.apksig.util.DataSource;
29 * {@link DataSource} backed by contents of {@link ZFile}.
31 class ZFileDataSource implements DataSource {
90 public DataSource slice(long offset, long size) {
  /external/autotest/frontend/client/src/autotest/common/table/
JSONObjectComparator.java 3 import autotest.common.table.DataSource.SortSpec;
DynamicTable.java 4 import autotest.common.table.DataSource.DataCallback;
5 import autotest.common.table.DataSource.Query;
6 import autotest.common.table.DataSource.SortDirection;
7 import autotest.common.table.DataSource.SortSpec;
52 protected DataSource dataSource;
66 public DynamicTable(String[][] columns, DataSource dataSource) {
68 setDataSource(dataSource);
238 dataSource.query(params, this)
    [all...]
DynamicTableSelectionManager.java 4 import autotest.common.table.DataSource.DefaultDataCallback;
5 import autotest.common.table.DataSource.Query;
  /frameworks/base/media/jni/
android_media_MediaExtractor.h 22 #include <media/DataSource.h>
45 status_t setDataSource(const sp<DataSource> &source);

Completed in 241 milliseconds

1 23 4 5 6 7 8 91011>>