Home
last modified time | relevance | path

Searched refs:upstream (Results 1 – 25 of 805) sorted by relevance

12345678910>>...33

/external/parameter-framework/
DAndroid.bp87 export_include_dirs: ["upstream/utility"],
90 "upstream/utility/DynamicLibrary.cpp",
91 "upstream/utility/posix/DynamicLibrary.cpp",
92 "upstream/utility/Tokenizer.cpp",
93 "upstream/utility/Utility.cpp",
101 "upstream/remote-processor",
109 "upstream/remote-processor/RequestMessage.cpp",
110 "upstream/remote-processor/Message.cpp",
111 "upstream/remote-processor/AnswerMessage.cpp",
112 "upstream/remote-processor/RemoteProcessorServer.cpp",
[all …]
/external/exoplayer/tree/library/hls/src/test/java/com/google/android/exoplayer2/source/hls/
DAes128DataSourceTest.java23 import com.google.android.exoplayer2.upstream.DataSource;
24 import com.google.android.exoplayer2.upstream.DataSpec;
25 import com.google.android.exoplayer2.upstream.TransferListener;
39 UpstreamDataSource upstream = new UpstreamDataSource(); in test_OpenCallsUpstreamOpen_CloseCallsUpstreamClose() local
40 Aes128DataSource testInstance = new TestAes123DataSource(upstream, new byte[16], new byte[16]); in test_OpenCallsUpstreamOpen_CloseCallsUpstreamClose()
41 assertThat(upstream.opened).isFalse(); in test_OpenCallsUpstreamOpen_CloseCallsUpstreamClose()
45 assertThat(upstream.opened).isTrue(); in test_OpenCallsUpstreamOpen_CloseCallsUpstreamClose()
48 assertThat(upstream.opened).isFalse(); in test_OpenCallsUpstreamOpen_CloseCallsUpstreamClose()
53 UpstreamDataSource upstream = in test_OpenCallsUpstreamThrowingOpen_CloseCallsUpstreamClose() local
60 Aes128DataSource testInstance = new TestAes123DataSource(upstream, new byte[16], new byte[16]); in test_OpenCallsUpstreamThrowingOpen_CloseCallsUpstreamClose()
[all …]
/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/upstream/crypto/
DAesCipherDataSource.java16 package com.google.android.exoplayer2.upstream.crypto;
23 import com.google.android.exoplayer2.upstream.DataSource;
24 import com.google.android.exoplayer2.upstream.DataSpec;
25 import com.google.android.exoplayer2.upstream.TransferListener;
36 private final DataSource upstream; field in AesCipherDataSource
41 public AesCipherDataSource(byte[] secretKey, DataSource upstream) { in AesCipherDataSource() argument
42 this.upstream = upstream; in AesCipherDataSource()
48 upstream.addTransferListener(transferListener); in addTransferListener()
53 long dataLength = upstream.open(dataSpec); in open()
66 int read = upstream.read(data, offset, readLength); in read()
[all …]
/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/upstream/
DPriorityDataSource.java16 package com.google.android.exoplayer2.upstream;
40 private final DataSource upstream; field in PriorityDataSource
49 public PriorityDataSource(DataSource upstream, PriorityTaskManager priorityTaskManager, in PriorityDataSource() argument
51 this.upstream = Assertions.checkNotNull(upstream); in PriorityDataSource()
58 upstream.addTransferListener(transferListener); in addTransferListener()
64 return upstream.open(dataSpec); in open()
70 return upstream.read(buffer, offset, max); in read()
76 return upstream.getUri(); in getUri()
81 return upstream.getResponseHeaders(); in getResponseHeaders()
86 upstream.close(); in close()
DTeeDataSource.java16 package com.google.android.exoplayer2.upstream;
31 private final DataSource upstream; field in TeeDataSource
41 public TeeDataSource(DataSource upstream, DataSink dataSink) { in TeeDataSource() argument
42 this.upstream = Assertions.checkNotNull(upstream); in TeeDataSource()
48 upstream.addTransferListener(transferListener); in addTransferListener()
53 bytesRemaining = upstream.open(dataSpec); in open()
71 int bytesRead = upstream.read(buffer, offset, max); in read()
85 return upstream.getUri(); in getUri()
90 return upstream.getResponseHeaders(); in getResponseHeaders()
96 upstream.close(); in close()
/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/source/
DIcyDataSource.java21 import com.google.android.exoplayer2.upstream.DataSource;
22 import com.google.android.exoplayer2.upstream.DataSpec;
23 import com.google.android.exoplayer2.upstream.TransferListener;
48 private final DataSource upstream; field in IcyDataSource
59 public IcyDataSource(DataSource upstream, int metadataIntervalBytes, Listener listener) { in IcyDataSource() argument
61 this.upstream = upstream; in IcyDataSource()
70 upstream.addTransferListener(transferListener); in addTransferListener()
87 int bytesRead = upstream.read(buffer, offset, Math.min(bytesUntilMetadata, readLength)); in read()
97 return upstream.getUri(); in getUri()
102 return upstream.getResponseHeaders(); in getResponseHeaders()
[all …]
/external/exoplayer/tree/library/hls/src/main/java/com/google/android/exoplayer2/source/hls/
DAes128DataSource.java21 import com.google.android.exoplayer2.upstream.DataSource;
22 import com.google.android.exoplayer2.upstream.DataSourceInputStream;
23 import com.google.android.exoplayer2.upstream.DataSpec;
24 import com.google.android.exoplayer2.upstream.TransferListener;
50 private final DataSource upstream; field in Aes128DataSource
61 public Aes128DataSource(DataSource upstream, byte[] encryptionKey, byte[] encryptionIv) { in Aes128DataSource() argument
62 this.upstream = upstream; in Aes128DataSource()
69 upstream.addTransferListener(transferListener); in addTransferListener()
90 DataSourceInputStream inputStream = new DataSourceInputStream(upstream, dataSpec); in open()
110 return upstream.getUri(); in getUri()
[all …]
/external/seccomp-tests/
DREADME.md3 This repository contains a mirror of the upstream Linux kernel test suite for the Seccomp-BPF
10 selftests are preserved here. In order to sync this repository to the upstream Linux, follow these
13 The pristine copy of the upstream source is kept on a branch called upstream-master. This branch is
23 …git remote add upstream-linux git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git -t …
28 Perform these steps every time you need to update the test suite from upstream.
32 git remote update upstream-linux
37 git checkout -b update-YYYYMMDD upstream-linux/master
45 4. Check out the upstream-master branch, which contains the pristine, filter-branch'd copy of the
47 the upstream-master branch.
49 git checkout -b upstream-master aosp/upstream-master
[all …]
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/flow/operators/
DShare.kt147 scope.launchSharing(config.context, config.upstream, shared, started, NO_VALUE as T) in <lambda>()
152 @JvmField val upstream: Flow<T>, constant in kotlinx.coroutines.flow.SharingConfig
165 val upstream = dropChannelOperators() in configureSharing() constant
166 if (upstream != null) { // Yes, it can => eliminate the intermediate channel in configureSharing()
168 upstream = upstream, in configureSharing()
186 upstream = this, in configureSharing()
196 upstream: Flow<T>, in launchSharing()
206 upstream.collect(shared) in launchSharing()
211 upstream.collect(shared) in launchSharing()
219 SharingCommand.START -> upstream.collect(shared) // can be cancelled in launchSharing()
[all …]
/external/rust/crates/codespan-reporting/examples/
Dreadme_preview.rs195 upstream: W, field
199 pub fn new(upstream: W) -> HtmlEscapeWriter<W> { in new()
200 HtmlEscapeWriter { upstream } in new()
214 self.upstream.write_all(&buf[last_term..i])?; in write()
216 self.upstream.write_all(escape)?; in write()
218 self.upstream.write_all(&buf[last_term..])?; in write()
223 self.upstream.flush() in flush()
229 self.upstream.supports_color() in supports_color()
233 self.upstream.set_color(spec) in set_color()
237 self.upstream.reset() in reset()
[all …]
/external/mesa3d/bin/
Dcommit_in_branch.py48 def branch_has_commit(upstream: str, branch: str, commit: str) -> bool:
53 commit, upstream + '/' + branch],
59 def branch_has_backport_of_commit(upstream: str, branch: str, commit: str) -> str:
65 branch + '-branchpoint..' + upstream + '/' + branch,
92 (upstream, _) = branch.split('/')
95 if line.startswith(upstream + '\t'):
99 raise argparse.ArgumentTypeError('Invalid remote: ' + upstream)
128 (upstream, branch) = args.branch.split('/')
130 if branch_has_commit(upstream, branch, args.commit):
134 backport = branch_has_backport_of_commit(upstream, branch, args.commit)
/external/exoplayer/tree/library/core/src/test/java/com/google/android/exoplayer2/upstream/cache/
DCacheDataSourceTest.java16 package com.google.android.exoplayer2.upstream.cache;
31 import com.google.android.exoplayer2.upstream.DataSpec;
32 import com.google.android.exoplayer2.upstream.FileDataSource;
294 FakeDataSource upstream = new FakeDataSource(); in unknownLengthContentReadInOneConnectionAndLengthIsResolved() local
295 upstream in unknownLengthContentReadInOneConnectionAndLengthIsResolved()
300 CacheDataSource cacheDataSource = new CacheDataSource(cache, upstream, 0); in unknownLengthContentReadInOneConnectionAndLengthIsResolved()
306 assertThat(upstream.getAndClearOpenedDataSpecs()).hasLength(1); in unknownLengthContentReadInOneConnectionAndLengthIsResolved()
313 FakeDataSource upstream = new FakeDataSource(); in ignoreCacheForUnsetLengthRequests() local
314 upstream.getDataSet().setData(testDataUri, TEST_DATA); in ignoreCacheForUnsetLengthRequests()
317 cache, upstream, CacheDataSource.FLAG_IGNORE_CACHE_FOR_UNSET_LENGTH_REQUESTS); in ignoreCacheForUnsetLengthRequests()
[all …]
DCacheDataSourceTest2.java16 package com.google.android.exoplayer2.upstream.cache;
30 import com.google.android.exoplayer2.upstream.DataSink;
31 import com.google.android.exoplayer2.upstream.DataSource;
32 import com.google.android.exoplayer2.upstream.DataSpec;
33 import com.google.android.exoplayer2.upstream.FileDataSource;
34 import com.google.android.exoplayer2.upstream.cache.Cache.CacheException;
35 import com.google.android.exoplayer2.upstream.crypto.AesCipherDataSink;
36 import com.google.android.exoplayer2.upstream.crypto.AesCipherDataSource;
/external/strace/debian/
Dchangelog.in9 * New upstream version.
15 * New upstream version.
21 * New upstream version.
27 * New upstream version.
33 * New upstream version.
39 * New upstream version.
45 * New upstream version.
51 * New upstream version.
57 * New upstream version.
63 * New upstream version.
[all …]
Dchangelog9 * New upstream version.
15 * New upstream version.
21 * New upstream version.
27 * New upstream version.
33 * New upstream version.
39 * New upstream version.
45 * New upstream version.
51 * New upstream version.
57 * New upstream version.
63 * New upstream version.
[all …]
/external/bouncycastle/
DREADME.android24 2) Submit the code to the upstream-master branch:
26 a) Create a new branch tracking upstream-master
28 git checkout -b upgrade-to-xxx --track aosp/upstream-master
43 git commit -a -m 'bouncycastle: Android tree with upstream code for version X.XX'
47 repo upload . -D upstream-master
57 git fetch aosp upstream-master
58 git merge aosp/upstream-master
62 * If upstream changed a file that's deleted locally, we probably don't
64 * If upstream added a file to a directory we deleted, we probably don't
/external/exoplayer/tree/demos/main/src/main/java/com/google/android/exoplayer2/demo/
DDemoApplication.java27 import com.google.android.exoplayer2.upstream.DataSource;
28 import com.google.android.exoplayer2.upstream.DefaultDataSourceFactory;
29 import com.google.android.exoplayer2.upstream.DefaultHttpDataSourceFactory;
30 import com.google.android.exoplayer2.upstream.HttpDataSource;
31 import com.google.android.exoplayer2.upstream.cache.Cache;
32 import com.google.android.exoplayer2.upstream.cache.CacheDataSource;
33 import com.google.android.exoplayer2.upstream.cache.NoOpCacheEvictor;
34 import com.google.android.exoplayer2.upstream.cache.SimpleCache;
/external/flac/
DREADME.version1 This commit is upto-date with following the commit in upstream-master
2 Branch: upstream-master
5 upstream-master is in sync with upstream project at
/external/libopus/
DREADME.version1 This commit is upto-date with following the commit in upstream-master
2 Branch: upstream-master
5 upstream-master is in sync with upstream project at
/external/kotlinx.coroutines/benchmarks/src/jmh/java/benchmarks/flow/scrabble/optimizations/
DFlowableSplit.java39 public Publisher<String> apply(Flowable<String> upstream) { in apply() argument
40 return new FlowableSplit(upstream, pattern, bufferSize); in apply()
68 Subscription upstream; field in FlowableSplit.SplitSubscriber
105 upstream.cancel(); in cancel()
115 if (SubscriptionHelper.validate(this.upstream, s)) { in onSubscribe()
116 this.upstream = s; in onSubscribe()
127 upstream.request(1); in onNext()
143 this.upstream.cancel(); in tryOnNext()
225 upstream.request(limit); in drain()
295 upstream.request(limit); in drain()
/external/rust/crates/lru-cache/
Ddeploy-docs.sh12 git remote add upstream "https://${GH_TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git"
13 git fetch upstream gh-pages
14 git reset upstream/gh-pages
20 git push -q upstream HEAD:gh-pages
/external/harfbuzz_ng/.ci/
Ddeploy-docs.sh28 git remote add upstream "https://$GH_TOKEN@github.com/harfbuzz/harfbuzz.github.io.git"
30 git fetch upstream
31 git reset upstream/master
36 git push -q upstream HEAD:master
/external/okio/okio/src/commonMain/kotlin/okio/
DPeekSource.kt29 private val upstream: BufferedSource constant in okio.PeekSource
31 private val buffer = upstream.buffer
50 if (!upstream.request(pos + 1)) return -1L in read()
67 return upstream.timeout() in timeout()
/external/flatbuffers/
DOWNERS1 # The only change here should be just mirroring upstream.
2 # wvo@google.com # upstream maintainer
3 # smiles@google.com # upstream maintainer
/external/wayland-protocols/
DREADME.android3 ## Updating from upstream
7 1. Checkout the upstream sources to a working directory if you haven't
20 * NOTICE should duplicate COPYING from upstream.
22 * METADATA should indicate the version of the upstream source used, and
43 of a version of the freedesktop.org upstream sources.
50 * NOTICE should duplicate LICENSE from upstream.
52 * METADATA should indicate the version of the upstream source used, and

12345678910>>...33