Lines Matching refs:uid
29 * the run-as command has dropped the uid/gid. Hence be very
160 * - is owned by a given uid/gid
168 check_directory_ownership(const char* path, uid_t uid)
184 /* must be owned by specific uid/gid */
185 if (st.st_uid != uid || st.st_gid != uid)
208 check_data_path(const char* dataPath, uid_t uid)
259 * directory is owned by the application uid
261 if (check_directory_ownership(dataPath, uid) < 0)
432 info->uid = 0;
446 * <pkgName> <uid> <debugFlag> <dataDir> <seinfo>
450 * <uid> is the application-specific user Id (decimal)
463 int uid, debugFlag;
475 uid = parse_positive_decimal(&p, end);
476 if (uid < 0)
479 info->uid = (uid_t) uid;