Home
last modified time | relevance | path

Searched refs:uids (Results 1 – 25 of 30) sorted by relevance

12

/external/llvm-project/compiler-rt/test/msan/Linux/
Dgetresid.cpp11 uid_t uids[6]; in main() local
12 assert(0 == __msan_test_shadow(uids, 6 * sizeof(uid_t))); in main()
13 assert(0 == getresuid(&uids[0], &uids[2], &uids[4])); in main()
16 __msan_test_shadow(uids + 2 * i, 2 * sizeof(uid_t))); in main()
/external/compiler-rt/test/msan/Linux/
Dgetresid.cc11 uid_t uids[6]; in main() local
12 assert(0 == __msan_test_shadow(uids, 6 * sizeof(uid_t))); in main()
13 assert(0 == getresuid(&uids[0], &uids[2], &uids[4])); in main()
16 __msan_test_shadow(uids + 2 * i, 2 * sizeof(uid_t))); in main()
/external/perfetto/src/profiling/common/
Dproc_utils_unittest.cc144 auto uids = GetUids(status); in TEST() local
145 ASSERT_NE(uids, base::nullopt); in TEST()
146 EXPECT_EQ(uids->real, 1u); in TEST()
147 EXPECT_EQ(uids->effective, 2u); in TEST()
148 EXPECT_EQ(uids->saved_set, 3u); in TEST()
149 EXPECT_EQ(uids->filesystem, 4u); in TEST()
156 auto uids = GetUids(status); in TEST() local
157 EXPECT_EQ(uids, base::nullopt); in TEST()
164 auto uids = GetUids(status); in TEST() local
165 EXPECT_EQ(uids, base::nullopt); in TEST()
Dproc_utils.cc201 Uids uids; in GetUids() local
205 uids.real = strtoull(str, &endptr, 10); in GetUids()
210 uids.effective = strtoull(str, &endptr, 10); in GetUids()
215 uids.saved_set = strtoull(str, &endptr, 10); in GetUids()
220 uids.filesystem = strtoull(str, &endptr, 10); in GetUids()
223 return uids; in GetUids()
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/wifi/
DWifiRtt2ManagerFacade.java160 @RpcOptional JSONArray uids) throws JSONException { in wifiRttCancelRanging()
162 mMgr.cancelRanging(getWorkSource(uids)); in wifiRttCancelRanging()
216 private static WorkSource getWorkSource(JSONArray uids) throws JSONException { in getWorkSource() argument
217 if (uids == null) { in getWorkSource()
221 for (int i = 0; i < uids.length(); ++i) { in getWorkSource()
222 ws.add(uids.getInt(i)); in getWorkSource()
/external/perfetto/src/profiling/memory/
Djava_hprof_producer.cc64 auto uids = GetUids(*opt_status); in SignalDataSource() local
65 if (!uids) { in SignalDataSource()
72 if (!CanProfile(ds.ds_config, uids->effective, in SignalDataSource()
75 uids->effective); in SignalDataSource()
/external/exoplayer/tree/extensions/cast/src/main/java/com/google/android/exoplayer2/ext/cast/
DCastPlayer.java341 int[] uids = new int[toIndex - fromIndex]; in moveMediaItems() local
342 for (int i = 0; i < uids.length; i++) { in moveMediaItems()
343 uids[i] = (int) currentTimeline.getWindow(/* windowIndex= */ i + fromIndex, window).uid; in moveMediaItems()
345 moveMediaItemsInternal(uids, fromIndex, newIndex); in moveMediaItems()
356 int[] uids = new int[toIndex - fromIndex]; in removeMediaItems() local
357 for (int i = 0; i < uids.length; i++) { in removeMediaItems()
358 uids[i] = (int) currentTimeline.getWindow(/* windowIndex= */ i + fromIndex, window).uid; in removeMediaItems()
360 removeMediaItemsInternal(uids); in removeMediaItems()
819 int[] uids, int fromIndex, int newIndex) { in moveMediaItemsInternal() argument
823 int insertBeforeIndex = fromIndex < newIndex ? newIndex + uids.length : newIndex; in moveMediaItemsInternal()
[all …]
/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/
DMediaSourceList.java503 private final Object[] uids; field in MediaSourceList.PlaylistTimeline
513 uids = new Object[childCount]; in PlaylistTimeline()
524 uids[index] = mediaSourceHolder.uid; in PlaylistTimeline()
525 childIndexByUid.put(uids[index], index++); in PlaylistTimeline()
564 return uids[childIndex]; in getChildUidByChildIndex()
/external/libcap/goapps/gowns/
Dgowns.go41 uids = flag.String("uids", "", "comma separated UID ranges to map contiguously (req. CAP_SETUID)") var
148 detail.uidMap = parseRanges(&detail, *uids, detail.uid)
/external/guava/android/guava/src/com/google/common/collect/
DOrdering.java326 private final ConcurrentMap<Object, Integer> uids = field in Ordering.ArbitraryOrdering
330 Integer uid = uids.get(obj); in getUid()
336 Integer alreadySet = uids.putIfAbsent(obj, uid); in getUid()
/external/guava/guava/src/com/google/common/collect/
DOrdering.java326 private final ConcurrentMap<Object, Integer> uids = field in Ordering.ArbitraryOrdering
330 Integer uid = uids.get(obj); in getUid()
336 Integer alreadySet = uids.putIfAbsent(obj, uid); in getUid()
/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/source/
DConcatenatingMediaSource.java908 private final Object[] uids; field in ConcatenatingMediaSource.ConcatenatedTimeline
920 uids = new Object[childCount]; in ConcatenatedTimeline()
931 uids[index] = mediaSourceHolder.uid; in ConcatenatedTimeline()
932 childIndexByUid.put(uids[index], index++); in ConcatenatedTimeline()
971 return uids[childIndex]; in getChildUidByChildIndex()
/external/conscrypt/android-stub/src/main/java/android/util/
DStatsEvent.java92 public StatsEvent.Builder writeAttributionChain(int[] uids, String[] tags) { in writeAttributionChain() argument
/external/squashfs-tools/RELEASE-READMEs/
DREADME-2.035 options. These allow the uids/gids of files in the generated
36 filesystem to be specified, overriding the uids/gids in the
90 uids/gids in the generated Squashfs filesystem to be root.
/external/squashfs-tools/kernel/Documentation/filesystems/
Dsquashfs.txt39 32-bit uids/gids: yes no
176 converted to 32-bit uids/gids using an id look up table. This table is
/external/squashfs-tools/
DCHANGES501 options. These allow the uids/gids of files in the generated
502 filesystem to be specified, overriding the uids/gids in the
DRELEASE-README124 -force-uid uid set all file uids to uid
401 file uids/gids in the generated Squashfs filesystem to be root. This allows
965 converted to 32-bit uids/gids using an id look up table. This table is
/external/strace/
DChangeLog-CVS1446 (main): Use strace_fopen() and strace_popen(), remove uids
3110 open the -o file or fiddle uids.
5274 and effective uids are root.
5280 (main, newoutf) [!SVR4]: Swap real and effective uids while
/external/owasp/sanitizer/lib/guava-libraries/
Dguava.jar ... collect.Ordering { private java.util.Map uids void <init> () public int compare ( ...
/external/owasp/sanitizer/distrib/lib/
Dguava.jar ... collect.Ordering { private java.util.Map uids void <init> () public int compare ( ...
/external/testng/ant/3rdparty/
Ddoclava-1.0.3.jarMETA-INF/MANIFEST.MF assets/html/index.html assets/templates/data ...
/external/guice/lib/
Dguava-19.0.jarMETA-INF/MANIFEST.MF META-INF/ META-INF/maven/ META- ...
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javasymbolsolver_0_6_0/lib/
Dguava-21.0.jarMETA-INF/MANIFEST.MF META-INF/ META-INF/maven/ META- ...
/external/cldr/tools/java/libs/
Dguava.jarMETA-INF/MANIFEST.MF META-INF/ META-INF/maven/ META- ...
/external/dagger2/java/dagger/internal/codegen/bootstrap/
Dbootstrap_compiler_deploy.jarMETA-INF/ META-INF/MANIFEST.MF build-data.properties META-INF ...

12