Home
last modified time | relevance | path

Searched refs:appid (Results 1 – 9 of 9) sorted by relevance

/external/syzkaller/vendor/google.golang.org/appengine/internal/
Dapp_id.go11 func parseFullAppID(appid string) (partition, domain, displayID string) {
12 if i := strings.Index(appid, "~"); i != -1 {
13 partition, appid = appid[:i], appid[i+1:]
15 if i := strings.Index(appid, ":"); i != -1 {
16 domain, appid = appid[:i], appid[i+1:]
18 return partition, domain, appid
Dapi_pre17.go503 if appid := ctx.Value(&appIDOverrideKey); appid != nil {
504 ticket = appid.(string) + defaultTicketSuffix
Dapi.go481 if appid := ctx.Value(&appIDOverrideKey); appid != nil {
482 ticket = appid.(string) + defaultTicketSuffix
/external/python/cpython3/PC/layout/support/
Dappxmanifest.py285 def _get_app(xml, appid): argument
286 if appid:
288 "m:Applications/m:Application[@Id='{}']".format(appid), APPXMANIFEST_NS
291 raise LookupError(appid)
297 def add_visual(xml, appid, data): argument
298 app = _get_app(xml, appid)
305 def add_alias(xml, appid, alias, subsystem="windows"): argument
306 app = _get_app(xml, appid)
314 def add_file_type(xml, appid, name, suffix, parameters='"%1"'): argument
315 app = _get_app(xml, appid)
[all …]
/external/u-boot/arch/x86/include/asm/arch-broadwell/
Dme.h161 #define MBP_MAKE_IDENT(appid, item) ((appid << 8) | item) argument
162 #define MBP_IDENT(appid, item) \ argument
163 MBP_MAKE_IDENT(MBP_APPID_##appid, MBP_##appid##_##item##_ITEM)
/external/autotest/client/cros/update_engine/
Dnano_omaha_devserver.py44 def create_update_response(self, appid): argument
113 return EOL_TEMPLATE.substitute(appid=appid)
124 template_keys['appid'] = appid
176 appid = app.getAttribute('appid')
178 response = self.server._devserver.create_update_response(appid)
/external/u-boot/disk/
Dpart_iso.h50 char appid[128]; /* application identifier */ member
88 char appid[128]; /* application identifier */ member
/external/selinux/libselinux/src/android/
Dandroid_platform.c914 uid_t appid; in seapp_context_lookup() local
943 appid = uid % AID_USER; in seapp_context_lookup()
944 if (appid < AID_APP) { in seapp_context_lookup()
952 pwd = getpwuid(appid); in seapp_context_lookup()
958 } else if (appid < AID_ISOLATED_START) { in seapp_context_lookup()
960 appid -= AID_APP; in seapp_context_lookup()
963 appid -= AID_ISOLATED_START; in seapp_context_lookup()
966 if (appid >= CAT_MAPPING_MAX_ID || userid >= CAT_MAPPING_MAX_ID) in seapp_context_lookup()
1052 appid & 0xff, in seapp_context_lookup()
1053 256 + (appid>>8 & 0xff)); in seapp_context_lookup()
[all …]
/external/curl/lib/vtls/
Dgskit.c451 gsk_handle *envir, const char *appid, in init_environment() argument
473 if(!result && appid) in init_environment()
474 result = set_buffer(data, h, GSK_OS400_APPLICATION_ID, appid, FALSE); in init_environment()