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

1 2

  /frameworks/base/services/java/com/android/server/
ProcessMap.java 28 SparseArray<E> uids = mMap.get(name); local
29 if (uids == null) return null;
30 return uids.get(uid);
34 SparseArray<E> uids = mMap.get(name); local
35 if (uids == null) {
36 uids = new SparseArray<E>(2);
37 mMap.put(name, uids);
39 uids.put(uid, value);
44 SparseArray<E> uids = mMap.get(name); local
45 if (uids != null)
    [all...]
  /external/kernel-headers/original/linux/
ipc.h 49 #define IPC_64 0x0100 /* New version (support 32-bit UIDs, bigger
ext2_fs.h 312 #define EXT2_MOUNT_NO_UID32 0x000200 /* Disable 32-bit UIDs */
ext3_fs.h 365 #define EXT3_MOUNT_NO_UID32 0x02000 /* Disable 32-bit UIDs */
  /system/core/include/cutils/
misc.h 38 /* This is the range of UIDs (and GIDs) that are reserved
  /packages/apps/Email/tests/src/com/android/email/mail/
MockFolder.java 83 public Message[] getMessages(String[] uids, MessageRetrievalListener listener) {
  /packages/apps/Email/src/com/android/email/mail/store/
ImapStore.java 505 // * OK [UIDVALIDITY 1125022061] UIDs valid
649 String[] uids = new String[messages.length]; local
651 uids[i] = messages[i].getUid();
655 Utility.combine(uids, ','),
733 ArrayList<String> uids = new ArrayList<String>(); local
739 uids.add(response.getString(i));
743 for (int i = 0, count = uids.size(); i < count; i++) {
745 listener.messageStarted(uids.get(i), i, count);
747 ImapMessage message = new ImapMessage(uids.get(i), this);
763 public Message[] getMessages(String[] uids, MessageRetrievalListener listener
815 String[] uids = new String[messages.length]; local
    [all...]
Pop3Store.java 402 * has been queried so that uids are available in the local cache.
458 private void indexUids(ArrayList<String> uids)
461 for (String uid : uids) {
470 * If we are missing uids in the cache the only sure way to
602 public Message[] getMessages(String[] uids, MessageRetrievalListener listener)
619 ArrayList<String> uids = new ArrayList<String>(); local
621 uids.add(message.getUid());
624 indexUids(uids);
    [all...]
LocalStore.java     [all...]
  /packages/apps/Email/src/com/android/email/mail/
Folder.java 112 * @param uids
118 public abstract Message[] getMessages(String[] uids, MessageRetrievalListener listener)
  /external/genext2fs/
genext2fs.8 84 .BI "\-U, \-\-squash\-uids"
  /frameworks/base/core/java/com/android/internal/os/
ZygoteConnection.java 537 * set of UIDs. In factory test mode, SYSTEM_UID may specify any uid.
553 "App UIDs may not specify uid's or gid's");
589 * <li> All other uids may not specify rlimits.
612 * spawn an instance with any capabilities. All other uids may spawn
  /external/guava/src/com/google/common/collect/
Ordering.java 204 private Map<Object, Integer> uids = field in class:Ordering.ArbitraryOrdering
224 int result = uids.get(left).compareTo(uids.get(right));
  /external/dropbear/
sshpty.c 375 * Warn but continue if filesystem is read-only and the uids match/
  /external/opencore/doc/pvauthor_html/
pv__plugin__interfaces_8h.html 365 These are the UIDs of the categories that should be returned via the MAsyncEventHandler interface for the async event callbacks. </td>
455 These are the UIDs of the categories that should be returned via the MAsyncEventHandler interface for the async event callbacks. </td>
  /external/opencore/engines/common/include/
pv_plugin_interfaces.h 40 * These are the UIDs of the categories that should be returned via the MAsyncEventHandler
58 * These are the UIDs of the categories that should be returned via the MAsyncEventHandler
  /frameworks/base/core/java/android/os/
Process.java 89 * Defines the start of a range of UIDs (and GIDs), going from this
95 * Last of application-specific UIDs starting at
BatteryStats.java 798 // Calculate total network and wakelock times across all uids.
    [all...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/
tree-pass.h 61 #define TDF_UID (1 << 8) /* display decl UIDs */
basic-block.h 421 /* UIDs for LABEL_DECLs. */
    [all...]
  /external/e2fsprogs/lib/ext2fs/
ext2_fs.h 489 #define EXT2_MOUNT_NO_UID32 0x0200 /* Disable 32-bit UIDs */
  /external/e2fsprogs/misc/
tune2fs.8.in 386 Disables 32-bit UIDs and GIDs. This is for interoperability with
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
DownloadProvider.java 109 /** List of uids that can access the downloads */
  /frameworks/base/services/java/com/android/server/am/
ActivityManagerService.java     [all...]
  /external/tcpdump/
smbutil.c 928 { "ERRtoomanyuids", 90, "Too many UIDs active on this session." },
    [all...]

Completed in 572 milliseconds

1 2