HomeSort by relevance Sort by last modified time
    Searched full:uids (Results 1 - 25 of 153) sorted by null

1 2 3 4 5 6 7

  /frameworks/base/core/java/com/android/internal/app/
ProcessMap.java 27 SparseArray<E> uids = mMap.get(name); local
28 if (uids == null) return null;
29 return uids.get(uid);
33 SparseArray<E> uids = mMap.get(name); local
34 if (uids == null) {
35 uids = new SparseArray<E>(2);
36 mMap.put(name, uids);
38 uids.put(uid, value);
43 SparseArray<E> uids = mMap.get(name); local
44 if (uids != null)
    [all...]
ProcessStats.java 264 final SparseArray<SparseArray<PackageState>> uids = pkgMap.valueAt(ip); local
265 for (int iu=0; iu<uids.size(); iu++) {
266 final int uid = uids.keyAt(iu);
267 final SparseArray<PackageState> versions = uids.valueAt(iu);
306 SparseArray<ProcessState> uids = procMap.valueAt(ip); local
307 for (int iu=0; iu<uids.size(); iu++) {
308 int uid = uids.keyAt(iu);
309 ProcessState otherProc = uids.valueAt(iu);
732 SparseArray<ProcessState> uids = procMap.valueAt(iproc); local
733 for (int iu=0; iu<uids.size(); iu++)
1313 final SparseArray<ProcessState> uids = procMap.valueAt(ip); local
1323 final SparseArray<SparseArray<PackageState>> uids = pkgMap.valueAt(ip); local
1362 final SparseArray<ProcessState> uids = procMap.valueAt(ip); local
1552 SparseArray<ProcessState> uids = procMap.valueAt(ip); local
1561 final SparseArray<SparseArray<PackageState>> uids = pkgMap.valueAt(ip); local
1616 final SparseArray<ProcessState> uids = procMap.valueAt(ip); local
1630 final SparseArray<SparseArray<PackageState>> uids = pkgMap.valueAt(ip); local
2172 final SparseArray<SparseArray<PackageState>> uids = pkgMap.valueAt(ip); local
2297 SparseArray<ProcessState> uids = procMap.valueAt(ip); local
2622 final SparseArray<SparseArray<PackageState>> uids = pkgMap.valueAt(ip); local
2704 SparseArray<ProcessState> uids = procMap.valueAt(ip); local
    [all...]
  /external/compiler-rt/test/msan/Linux/
getresid.cc 11 uid_t uids[6]; local
12 assert(0 == __msan_test_shadow(uids, 6 * sizeof(uid_t)));
13 assert(0 == getresuid(&uids[0], &uids[2], &uids[4]));
16 __msan_test_shadow(uids + 2 * i, 2 * sizeof(uid_t)));
  /cts/tests/tests/os/src/android/os/cts/
WorkSourceTest.java 56 private WorkSource wsNew(int[] uids) throws IllegalArgumentException,
59 for (int i=0; i<uids.length; i++) {
60 wsAdd(ws, uids[i]);
62 checkWorkSource("Constructed", ws, uids);
66 private WorkSource wsNew(int[] uids, String[] names) throws IllegalArgumentException,
69 for (int i=0; i<uids.length; i++) {
70 wsAdd(ws, uids[i], names[i]);
72 checkWorkSource("Constructed", ws, uids, names);
106 private void printArrays(StringBuilder sb, int[] uids, String[] names) {
108 for (int i=0; i<uids.length; i++)
    [all...]
  /frameworks/base/core/java/android/net/
UidRange.aidl 20 * An inclusive range of UIDs.
UidRange.java 27 * An inclusive range of UIDs.
  /frameworks/base/services/core/java/com/android/server/net/
NetworkStatsRecorder.java 243 public void removeUidsLocked(int[] uids) {
246 mRotator.rewriteAll(new RemoveUidRewriter(mBucketDuration, uids));
248 Log.wtf(TAG, "problem removing UIDs " + Arrays.toString(uids), e);
251 Log.wtf(TAG, "problem removing UIDs " + Arrays.toString(uids), e);
256 mPending.removeUids(uids);
257 mSinceBoot.removeUids(uids);
261 mLastSnapshot = mLastSnapshot.withoutUids(uids);
266 complete.removeUids(uids);
    [all...]
  /system/netd/server/
NetworkController.h 69 void setPermissionForUsers(Permission permission, const std::vector<uid_t>& uids);
88 void allowProtect(const std::vector<uid_t>& uids);
89 void denyProtect(const std::vector<uid_t>& uids);
VirtualNetwork.h 26 // Only a few privileged UIDs may skip the VPN and go directly to the underlying physical network.
  /external/sepolicy/
seapp_contexts 34 # levelFrom=user is only supported for _app or _isolated UIDs.
35 # levelFrom=app or levelFrom=all is only supported for _app UIDs.
  /bionic/tests/
sys_types_test.cpp 22 // gids, pids, and uids should be 32-bit on all systems.
  /packages/apps/Nfc/src/com/android/nfc/
ForegroundUtils.java 101 * @return a list of UIDs currently in the foreground, or an empty list
105 ArrayList<Integer> uids = new ArrayList<Integer>(mForegroundUidPids.size()); local
108 uids.add(mForegroundUidPids.keyAt(i));
111 return uids;
  /system/core/include/cutils/
misc.h 31 /* This is the range of UIDs (and GIDs) that are reserved
qtaguid.h 29 * Set tags (and owning UIDs) for network sockets.
  /packages/apps/Email/src/com/android/email/mail/store/
ImapFolder.java 131 // * OK [UIDVALIDITY 1125022061] UIDs valid
278 // Process response to get the new UIDs
383 final ArrayList<String> uids = new ArrayList<String>(); local
392 uids.add(s.getString());
396 return uids.toArray(Utility.EMPTY_STRINGS);
445 final String[] uids = searchForUids(ImapConstants.UID + " " + uid); local
446 for (int i = 0; i < uids.length; i++) {
447 if (uids[i].equals(uid)) {
559 String [] uids = null; local
564 uids = searchForUids(command.toString(), false)
1141 String[] uids = searchForUids( local
    [all...]
  /frameworks/native/services/powermanager/
IPowerManager.cpp 88 virtual status_t updateWakeLockUids(const sp<IBinder>& lock, int len, const int *uids,
93 data.writeInt32Array(len, uids);
  /packages/apps/Settings/src/com/android/settings/net/
ChartDataLoader.java 93 final int size = app.uids.size();
95 final int uid = app.uids.keyAt(i);
  /external/chromium_org/v8/src/
heap-profiler.h 72 // Mapping from HeapObject addresses to objects' uids.
  /external/kernel-headers/original/uapi/linux/
ipc.h 49 #define IPC_64 0x0100 /* New version (support 32-bit UIDs, bigger
  /frameworks/base/core/java/android/os/
IPowerManager.aidl 33 void updateWakeLockUids(IBinder lock, in int[] uids);
UserHandle.java 30 * @hide Range of uids allocated for a user.
76 * Checks to see if the user id is the same for the two uids, i.e., they belong to the same
85 * Checks to see if both uids are referring to the same app id, ignoring the user id part of the
86 * uids.
89 * @return whether the appId is the same for both uids
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/linux/
ipc.h 49 #define IPC_64 0x0100 /* New version (support 32-bit UIDs, bigger
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
ipc.h 49 #define IPC_64 0x0100 /* New version (support 32-bit UIDs, bigger
  /system/core/logd/
LogStatistics.h 111 UidStatisticsCollection Uids;
117 UidStatisticsCollection::iterator begin() { return Uids.begin(); }
118 UidStatisticsCollection::iterator end() { return Uids.end(); }
  /external/chromium_org/chrome/common/media_galleries/
picasa_types.h 29 // Map of album uids to a collection of its images.

Completed in 2170 milliseconds

1 2 3 4 5 6 7