HomeSort by relevance Sort by last modified time
    Searched refs:appid (Results 1 - 16 of 16) sorted by null

  /external/chromium_org/chrome/tools/build/
appid.py 7 appid.py -- Chromium appid header file generation utility.
14 // This file is automatically generated by appid.py.
15 // It contains the Google Update Appid used for this build. Note that
16 // the Appid will be empty for non Google Chrome builds.
23 contents = GENERATED_APPID_INCLUDE_FILE_CONTENTS % opts.appid
37 parser.add_option('-a', '--appid',
44 if opts.appid is None or not opts.output_file:
49 print "Generating appid header... ",
  /bionic/libc/bionic/
stubs.cpp 228 unsigned long appid = 0; local
231 appid = strtoul(end+2, &end, 10) + AID_APP;
234 appid = strtoul(end+2, &end, 10) + AID_ISOLATED_START;
238 appid = android_ids[n].aid;
258 if (appid >= AID_USER) {
263 return (unsigned)(appid + userid*AID_USER);
266 static void print_app_name_from_appid_userid(const uid_t appid,
268 if (appid >= AID_ISOLATED_START) {
269 snprintf(buffer, bufferlen, "u%u_i%u", userid, appid - AID_ISOLATED_START);
270 } else if (userid == 0 && appid >= AID_SHARED_GID_START)
285 const uid_t appid = uid % AID_USER; local
304 const uid_t appid = uid % AID_USER; local
    [all...]