HomeSort by relevance Sort by last modified time
    Searched full:appid (Results 1 - 25 of 167) sorted by null

1 2 3 4 5 6 7

  /external/chromium_org/cloud_print/service/win/resources/
cloud_print_service.rgs 3 NoRemove AppID
5 ForceRemove '%APPID%'
  /external/chromium_org/tools/measure_page_load_time/ie_bho/
MeasurePageLoadTime.rgs 3 NoRemove AppID
5 '%APPID%' = s 'MeasurePageLoadTime'
8 val AppID = s '%APPID%'
MeasurePageLoadTimeBHO.rgs 23 val AppID = s '%APPID%'
  /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... ",
  /external/chromium_org/chrome/browser/resources/cryptotoken/
webrequest.js 51 * @param {string} appId the app id to fetch.
54 function fetchAppId(appId, cb) {
55 var origin = getOriginFromUrl(appId);
57 cb(404, appId);
62 xhr.open('GET', appId, true);
65 cb(xhr.status, appId);
68 cb(xhr.status, appId, getOriginsFromJson(xhr.responseText));
84 var appId = request['appId'];
85 if (appId && appIds.indexOf(appId) == -1)
    [all...]
enroller.js 151 if (!enrollChallenge['appId']) {
232 * enrollments for this user and appId
241 enrollAppIds.push(enrollChallenges[i]['appId']);
275 B64_encode(sha256HashOfString(enrollChallenge['appId']));
333 var appId = incomingChallenge['appId'];
336 var challenge = makeChallenge(serverChallenge, appId, encodedKeyHandle,
372 var appId = this.distinctAppIds_[i];
373 if (appId == this.origin_) {
386 fetchAllowedOriginsForAppId(appId, this.allowHttp_
    [all...]
signer.js 77 // A valid sign data has at least one challenge, so get the first appId from
79 var firstAppId = signData[0]['appId'];
326 var appId = incomingChallenge['appId'];
332 var encodedChallenge = makeChallenge(browserData, appId, encodedKeyHandle,
365 var appId = appIdRequestsPair[0];
367 if (appId == this.origin_) {
375 fetchAllowedOriginsForAppId(appId, this.allowHttp_,
376 this.fetchedAllowedOriginsForAppId_.bind(this, appId, start,
384 * @param {string} appId the app id that was fetched
    [all...]
  /frameworks/base/core/java/android/print/
IPrintManager.aidl 35 List<PrintJobInfo> getPrintJobInfos(int appId, int userId);
36 PrintJobInfo getPrintJobInfo(in PrintJobId printJobId, int appId, int userId);
38 in PrintAttributes attributes, String packageName, int appId, int userId);
39 void cancelPrintJob(in PrintJobId printJobId, int appId, int userId);
40 void restartPrintJob(in PrintJobId printJobId, int appId, int userId);
43 int appId, int userId);
IPrintSpooler.aidl 38 int state, int appId, int sequence);
40 int appId, int sequence);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
Subscription.java 48 public String appId;
79 + ", appId = " + appId
90 && ((TextUtils.isEmpty(appId) && TextUtils.isEmpty(sub.appId))
91 || TextUtils.equals(appId, sub.appId))
107 * Return true if the appIndex, appId, appLabel and iccId are matching.
118 + ":" + appId
123 + ":" + sub.appId
    [all...]
  /external/chromium_org/remoting/host/win/
omaha.h 10 // The Omaha Appid of the host.
omaha.cc 9 // The Omaha Appid of the host. It should be kept in sync with $(var.OmahaAppid)
  /frameworks/base/core/java/android/os/
UserHandle.java 89 * @return whether the appId is the same for both uids
99 final int appId = getAppId(uid);
100 return appId >= Process.FIRST_ISOLATED_UID && appId <= Process.LAST_ISOLATED_UID;
109 final int appId = getAppId(uid);
110 return appId >= Process.FIRST_APPLICATION_UID && appId <= Process.LAST_APPLICATION_UID;
146 * Returns the uid that is composed from the userId and the appId.
149 public static final int getUid(int userId, int appId) {
151 return userId * PER_USER_RANGE + (appId % PER_USER_RANGE)
    [all...]
  /external/chromium_org/components/gcm_driver/android/java/src/org/chromium/components/gcm_driver/
GCMDriver.java 74 private void register(final String appId, final String[] senderIds) {
89 // TODO(johnme): Pass appId to GCM.
102 nativeOnRegisterFinished(mNativeGCMDriverAndroid, appId, registrationId,
111 private void unregister(final String appId) {
123 // TODO(johnme): Pass appId to GCM.
133 nativeOnUnregisterFinished(mNativeGCMDriverAndroid, appId,
139 static void onRegisterFinished(String appId, String registrationId) {
144 sInstance.nativeOnRegisterFinished(sInstance.mNativeGCMDriverAndroid, appId,
149 static void onUnregisterFinished(String appId) {
154 sInstance.nativeOnUnregisterFinished(sInstance.mNativeGCMDriverAndroid, appId, true)
    [all...]
  /system/core/libcutils/
multiuser.c 27 uid_t multiuser_get_uid(userid_t userId, appid_t appId) {
28 return userId * MULTIUSER_APP_PER_USER_RANGE + (appId % MULTIUSER_APP_PER_USER_RANGE);
  /external/chromium_org/chrome/installer/mini_installer/
appid.h 8 // The appid included by the mini_installer.
chrome_appid.cc 5 #include "chrome/installer/mini_installer/appid.h"
  /frameworks/base/services/core/java/com/android/server/pm/
PackageSetting.java 28 int appId;
48 appId = orig.appId;
57 + " " + name + "/" + appId + "}";
  /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...]
  /external/chromium_org/chrome/browser/resources/app_list/
recommended_apps.js 27 appId: '',
56 assert(this.appId);
57 chrome.send('launchApp', [this.appId]);
  /external/chromium_org/chrome/common/extensions/
update_manifest_unittest.cc 13 " <app appid='12345'>"
22 " <app appid='12345'>"
41 " <app appid='12345' status='ok'>"
50 " <app appid='12345' status='ok'>"
58 " <app appid='12345' status='ok'>"
67 " <g:app appid='12345'>"
81 " <app appid='12345'>"
92 " <app appid='12345'>"
102 " <app appid='12345'>"
111 " <app appid='aaaaaaaa' status='error-unknownApplication'>
    [all...]
  /external/chromium_org/chrome/browser/extensions/
external_component_loader.cc 33 std::string appId = extension_misc::kInAppPaymentsSupportAppId;
34 prefs_->SetString(appId + ".external_update_url",
  /external/chromium_org/chrome/browser/component_updater/test/
update_response_unittest.cc 15 " <app appid='12345'>"
33 " <app appid='12345'>"
50 " <app appid='12345'>"
72 " <app appid='12345'>"
98 " <app appid='12345' status='ok'>"
107 " <app appid='12345' status='ok'>"
115 " <app appid='12345' status='ok'>"
126 " <g:app appid='12345'>"
145 " <a:app appid='12345'>"
157 " <b:app appid='xyz' xmlns:b='http://b'>
    [all...]
  /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...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
ContextMap.java 45 int appId;
47 Connection(int connId, String address,int appId) {
50 this.appId = appId;
228 return getById(connection.appId);
244 if (connection.address.equals(address) && connection.appId == id)
262 List<Connection> getConnectionByApp(int appId) {
267 if (connection.appId == appId)

Completed in 309 milliseconds

1 2 3 4 5 6 7