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

  /external/chromium_org/win8/metro_driver/
toast_notification_handler.cc 209 base::string16 appid = local
211 DVLOG(1) << "Chrome Appid is " << appid.c_str();
214 app_user_model_id.Attach(MakeHString(appid));
  /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...]
  /external/chromium_org/chrome/browser/background/
background_contents_service_unittest.cc 55 std::string GetPrefURLForApp(Profile* profile, const base::string16& appid) {
57 EXPECT_TRUE(pref->HasKey(base::UTF16ToUTF8(appid)));
59 pref->GetDictionaryWithoutPathExpansion(base::UTF16ToUTF8(appid), &value);
110 const base::string16& appid() { return appid_; } function in class:MockBackgroundContents
251 EXPECT_EQ(url.spec(), GetPrefURLForApp(&profile, contents->appid()));
256 EXPECT_EQ(url.spec(), GetPrefURLForApp(&profile, contents->appid()));
274 EXPECT_EQ(url.spec(), GetPrefURLForApp(&profile, contents->appid()));
292 &profile, "appid"));
296 EXPECT_EQ(url.spec(), GetPrefURLForApp(&profile, contents->appid()));
305 &profile, "appid"));
    [all...]
background_contents_service.cc 378 const base::string16& appid = GetParentApplicationId(bgcontents); local
384 base::UTF16ToUTF8(appid), false);
684 const base::string16& appid = GetParentApplicationId(background_contents); local
686 if (pref->GetDictionaryWithoutPathExpansion(base::UTF16ToUTF8(appid),
694 dict->SetString(kFrameNameKey, contents_map_[appid].frame_name);
695 pref->SetWithoutPathExpansion(base::UTF16ToUTF8(appid), dict);
713 const base::string16 appid = GetParentApplicationId(background_contents); local
715 update.Get()->RemoveWithoutPathExpansion(base::UTF16ToUTF8(appid), NULL);
719 const base::string16& appid) {
720 BackgroundContents* contents = GetAppBackgroundContents(appid);
750 base::string16 appid = GetParentApplicationId(background_contents); local
    [all...]
  /frameworks/native/cmds/servicemanager/
service_manager.c 185 uid_t appid = uid % AID_USER; local
186 if (appid >= AID_ISOLATED_START && appid <= AID_ISOLATED_END) {
  /packages/providers/UserDictionaryProvider/src/com/android/providers/userdictionary/
DictionaryBackupAgent.java 169 int appId = cursor.getInt(COLUMN_APPID);
173 String out = name + SEPARATOR + frequency + SEPARATOR + locale + SEPARATOR + appId
228 String appid = null; local
232 if (st.hasMoreTokens()) appid = st.nextToken();
236 int appidInt = appid != null? Integer.parseInt(appid) : 0;
  /external/libselinux/src/
android.c 528 uid_t appid; local
533 appid = uid % AID_USER;
534 if (appid < AID_APP) {
536 if (android_ids[n].aid == appid) {
543 } else if (appid < AID_ISOLATED_START) {
545 appid -= AID_APP;
548 appid -= AID_ISOLATED_START;
551 if (appid >= CAT_MAPPING_MAX_ID || userid >= CAT_MAPPING_MAX_ID)
630 appid & 0xff,
631 256 + (appid>>8 & 0xff))
    [all...]
  /external/qemu/distrib/libselinux/src/
android.c 521 uid_t appid; local
526 appid = uid % AID_USER;
527 if (appid < AID_APP) {
529 if (android_ids[n].aid == appid) {
536 } else if (appid < AID_ISOLATED_START) {
538 appid -= AID_APP;
541 appid -= AID_ISOLATED_START;
544 if (appid >= CAT_MAPPING_MAX_ID || userid >= CAT_MAPPING_MAX_ID)
623 appid & 0xff,
624 256 + (appid>>8 & 0xff))
    [all...]
  /system/core/sdcard/
sdcard.c 452 appid_t appid; local
524 appid = (appid_t) (uintptr_t) hashmapGet(fuse->package_to_appid, node->name);
525 if (appid != 0) {
526 node->uid = multiuser_get_uid(parent->userid, appid);
547 appid_t appid = multiuser_get_app_id(hdr->uid); local
548 return hashmapContainsKey(fuse->appid_with_rw, (void*) (uintptr_t) appid);
1678 int appid; local
    [all...]
  /frameworks/base/core/java/android/app/
ActivityManagerNative.java 1568 int appid = data.readInt(); local
    [all...]
  /frameworks/base/services/core/java/com/android/server/notification/
NotificationManagerService.java 2828 final int appid = UserHandle.getAppId(uid); local
    [all...]
  /frameworks/base/services/core/java/com/android/server/am/
ActivityManagerService.java 1551 int appid = msg.arg1; local
    [all...]

Completed in 454 milliseconds