HomeSort by relevance Sort by last modified time
    Searched refs:uid (Results 826 - 850 of 1516) sorted by null

<<31323334353637383940>>

  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
StorageUtils.java 202 * @param uid only return files owned by this UID, or {@code -1} to ignore.
204 static List<ConcreteFile> listFilesRecursive(File startDir, String exclude, int uid) {
221 if (uid == -1 || file.stat.st_uid == uid) {
  /prebuilts/ndk/9/platforms/android-21/arch-arm/usr/include/linux/genwqe/
genwqe_card.h 30 #define GENWQE_UID_OFFS(uid) ((uid) << 24)
241 __u32 uid; member in struct:genwqe_bitstream
  /prebuilts/ndk/9/platforms/android-21/arch-arm64/usr/include/linux/genwqe/
genwqe_card.h 30 #define GENWQE_UID_OFFS(uid) ((uid) << 24)
241 __u32 uid; member in struct:genwqe_bitstream
  /prebuilts/ndk/9/platforms/android-21/arch-mips/usr/include/linux/genwqe/
genwqe_card.h 30 #define GENWQE_UID_OFFS(uid) ((uid) << 24)
241 __u32 uid; member in struct:genwqe_bitstream
  /prebuilts/ndk/9/platforms/android-21/arch-mips64/usr/include/linux/genwqe/
genwqe_card.h 30 #define GENWQE_UID_OFFS(uid) ((uid) << 24)
241 __u32 uid; member in struct:genwqe_bitstream
  /prebuilts/ndk/9/platforms/android-21/arch-x86/usr/include/linux/genwqe/
genwqe_card.h 30 #define GENWQE_UID_OFFS(uid) ((uid) << 24)
241 __u32 uid; member in struct:genwqe_bitstream
  /prebuilts/ndk/9/platforms/android-21/arch-x86_64/usr/include/linux/genwqe/
genwqe_card.h 30 #define GENWQE_UID_OFFS(uid) ((uid) << 24)
241 __u32 uid; member in struct:genwqe_bitstream
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
mimetools.py 144 uid = repr(os.getuid())
146 uid = '1'
151 _prefix = hostid + '.' + uid + '.' + pid
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
mimetools.py 144 uid = repr(os.getuid())
146 uid = '1'
151 _prefix = hostid + '.' + uid + '.' + pid
  /frameworks/base/services/core/java/com/android/server/connectivity/
Vpn.java 273 Log.wtf(TAG, "Failed to disallow UID " + mOwnerUID + " to call protect() " + e);
282 Log.wtf(TAG, "Failed to allow UID " + mOwnerUID + " to call protect() " + e);
582 // Returns true if the VPN has been established and the calling UID is its owner. Used to check
592 int uid = getAppUid(app, userHandle); local
593 if (uid != -1) uids.add(uid);
607 for (int uid : getAppsUids(mConfig.allowedApplications, userHandle)) {
609 start = uid;
610 } else if (uid != stop + 1) {
612 start = uid;
    [all...]
  /bootable/recovery/
fuse_sideload.c 83 uid_t uid; member in struct:fuse_data
137 attr->uid = fd->uid;
381 fd.uid = getuid();
409 fd.ffd, fd.uid, fd.gid, block_size);
  /external/chromium_org/third_party/mesa/src/src/glx/apple/
appledri.c 245 XAppleDRICreateSurface(dpy, screen, drawable, client_id, key, uid)
251 unsigned int *uid;
267 rep.key_0 = rep.key_1 = rep.uid = 0;
276 *uid = rep.uid;
  /external/libnfc-nci/src/nfa/include/
nfa_api.h 151 #define NFA_MAX_UID_LEN TAG_MAX_UID_LEN /* Max UID length of T1/T2 */
152 #define NFA_T1T_UID_LEN T1T_UID_LEN /* T1T UID length */
153 #define NFA_T1T_CMD_UID_LEN T1T_CMD_UID_LEN /* UID len for T1T cmds */
154 #define NFA_T2T_UID_LEN T2T_UID_LEN /* T2T UID length */
280 UINT8 uid[NFA_T1T_CMD_UID_LEN]; /* UID used in T1T Commands */ member in struct:__anon28594
285 UINT8 uid[NFA_MAX_UID_LEN]; /* UID of T2T tag */ member in struct:__anon28595
296 UINT8 uid[I93_UID_BYTE_LEN]; /* UID[0]:MSB, ... UID[7]:LSB * member in struct:__anon28597
381 UINT8 uid[I93_UID_BYTE_LEN]; \/* UID[0]:MSB, ... UID[7]:LSB *\/ member in struct:__anon28607
387 UINT8 uid[I93_UID_BYTE_LEN]; \/* UID *\/ member in struct:__anon28608
    [all...]
  /external/mesa3d/src/glx/apple/
appledri.c 245 XAppleDRICreateSurface(dpy, screen, drawable, client_id, key, uid)
251 unsigned int *uid;
267 rep.key_0 = rep.key_1 = rep.uid = 0;
276 *uid = rep.uid;
  /libcore/luni/src/main/java/libcore/io/
Os.java 49 public void chown(String path, int uid, int gid) throws ErrnoException;
58 public void fchown(FileDescriptor fd, int uid, int gid) throws ErrnoException;
78 public StructPasswd getpwuid(int uid) throws ErrnoException;
94 public void lchown(String path, int uid, int gid) throws ErrnoException;
141 public void setuid(int uid) throws ErrnoException;
  /system/core/sdcard/
sdcard.c 57 * It must be run as root, but will drop to requested UID/GID as soon as it
58 * mounts a filesystem. It will refuse to run if requested UID/GID are zero.
180 uid_t uid; member in struct:node
426 attr->uid = node->uid;
457 node->uid = parent->uid;
526 node->uid = multiuser_get_uid(parent->userid, appid);
540 /* Return if the calling UID holds sdcard_rw. */
547 appid_t appid = multiuser_get_app_id(hdr->uid);
1885 uid_t uid = 0; local
    [all...]
  /frameworks/base/services/core/java/com/android/server/content/
ContentService.java 244 final int uid = Binder.getCallingUid(); local
283 syncManager.scheduleLocalSync(null /* all accounts */, callingUserHandle, uid,
319 int uId = Binder.getCallingUid();
327 syncManager.scheduleSync(account, userId, uId, authority, extras,
903 public final int uid; field in class:ContentService.ObserverNode.ObserverEntry
    [all...]
  /external/chromium_org/chrome/browser/media_galleries/fileapi/
picasa_file_util_unittest.cc 58 const std::string& uid, unsigned int image_files,
62 uid_(uid),
486 new TestFolder("folder-1-empty", test_date, "uid-empty", 0, 0));
488 new TestFolder("folder-2-images", test_date, "uid-images", 5, 0));
490 new TestFolder("folder-3-nonimages", test_date, "uid-nonimages", 0, 5));
492 new TestFolder("folder-4-both", test_date, "uid-both", 5, 5));
503 new TestFolder("folder-many-files", test_date, "uid-both", 50, 50));
519 base::StringPrintf("uid%05d", i), i % 5, i % 3));
533 info.uid = "albumuid";
538 albums_images[info.uid] = AlbumImages()
    [all...]
  /frameworks/base/services/core/java/com/android/server/job/
JobStore.java 139 public boolean containsJobIdForUid(int jobId, int uId) {
142 if (ts.getUid() == uId && ts.getJobId() == jobId) {
198 * @param uid Uid of the requesting app.
199 * @return All JobStatus objects for a given uid from the master list. Never null.
201 public List<JobStatus> getJobsByUid(int uid) {
206 if (ts.getUid() == uid) {
214 * @param uid Uid of the requesting app.
216 * @return the JobStatus that matches the provided uId and jobId, or null if none found
515 int uid; local
    [all...]
  /external/dnsmasq/src/
cache.c 27 static int uid = 0; variable
91 crecp->uid = uid++;
180 crecp->uid = uid++; /* invalidate CNAMES pointing to this. */
240 if (crecp->addr.cname.cache && crecp->addr.cname.uid == crecp->addr.cname.cache->uid)
688 cache->uid = index;
701 lookup->addr.cname.uid = index;
1055 record_source(crec->uid), daemon->namebuff)
    [all...]
  /external/genext2fs/
genext2fs.c 467 udecl16(s_def_resuid) /* The default uid for reserved blocks */ \
1509 unsigned long mode, uid, gid, major, minor; local
1658 uint32 uid, gid, mode, ctime, mtime; local
    [all...]
  /build/tools/releasetools/
ota_from_target_files 185 # The target_files contains a record of what the uid,
192 name, uid, gid, mode = columns[:4]
207 i.uid = int(uid)
217 if i: i.uid, i.gid, i.mode, i.selabel, i.capabilities = 0, 0, 0644, None, None
219 if i: i.uid, i.gid, i.mode, i.selabel, i.capabilities = 0, 0, 0544, None, None
228 self.uid = None
244 if self.uid is not None:
245 print "%s%s %d %d %o" % (" "*indent, self.name, self.uid, self.gid, self.mode)
247 print "%s%s %s %s %s" % (" "*indent, self.name, self.uid, self.gid, self.mode
    [all...]
  /frameworks/base/services/core/java/com/android/server/
NetworkManagementService.java 498 // push any existing quota or UID rules
522 Slog.d(TAG, "pushing " + size + " active uid rules");
1854 final int uid = Binder.getCallingUid(); local
    [all...]
  /external/mksh/src/
check.pl 1031 local($type, $perm, $uid, $gid, $matchType,
1034 # format is: type perm uid gid matchType "name"
1040 ($type, $perm, $uid, $gid, $matchType, $rest)
1052 if ($uid !~ /^\d+$/ && $uid ne '*') {
1054 "$prog:$file:$.: bad user-id for file-result: $uid\n";
    [all...]
  /frameworks/av/services/audiopolicy/
AudioPolicyService.cpp 154 uid_t uid = IPCThreadState::self()->getCallingUid(); local
155 if (mNotificationClients.indexOfKey(uid) < 0) {
158 uid);
159 ALOGV("registerClient() client %p, uid %d", client.get(), uid);
161 mNotificationClients.add(uid, notificationClient);
169 void AudioPolicyService::removeNotificationClient(uid_t uid)
173 mNotificationClients.removeItem(uid);
179 mAudioPolicyManager->clearAudioPatches(uid);
232 uid_t uid)
    [all...]

Completed in 2244 milliseconds

<<31323334353637383940>>