Home | History | Annotate | Download | only in run-as

Lines Matching refs:uid

29  *  the run-as command has dropped the uid/gid. Hence be very
139 * - is owned by a given uid/gid
147 check_directory_ownership(const char* path, uid_t uid)
163 /* must be owned by specific uid/gid */
164 if (st.st_uid != uid || st.st_gid != uid)
187 check_data_path(const char* dataPath, uid_t uid)
238 * directory is owned by the application uid
240 if (check_directory_ownership(dataPath, uid) < 0)
411 info->uid = 0;
424 * <pkgName> <uid> <debugFlag> <dataDir>
428 * <uid> is the application-specific user Id (decimal)
440 int uid, debugFlag;
452 uid = parse_positive_decimal(&p, end);
453 if (uid < 0)
456 info->uid = (uid_t) uid;