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

  /external/chromium_org/chrome/browser/extensions/
external_component_loader.cc 18 std::string appId = extension_misc::kInAppPaymentsSupportAppId;
19 prefs_->SetString(appId + ".external_update_url",
  /frameworks/base/services/java/com/android/server/pm/
PackageSetting.java 28 int appId;
45 appId = orig.appId;
54 + " " + name + "/" + appId + "}";
Settings.java 301 p.nativeLibraryPathString, p.appId, p.versionCode, p.pkgFlags);
318 if (p.appId == uid) {
327 p.appId = uid;
450 p.appId = origPackage.appId;
491 p.appId = sharedUser.userId;
503 p.appId = dis.appId;
518 addUserIdLPw(p.appId, p, name);
521 p.appId = newUserIdLPw(p)
    [all...]
PackageManagerService.java 761 ? UserHandle.getUid(packageUserId, ps.appId)
    [all...]
  /frameworks/base/core/java/android/os/
UserHandle.java 83 * @return whether the appId is the same for both uids
93 final int appId = getAppId(uid);
94 return appId >= Process.FIRST_ISOLATED_UID && appId <= Process.LAST_ISOLATED_UID;
103 final int appId = getAppId(uid);
104 return appId >= Process.FIRST_APPLICATION_UID && appId <= Process.LAST_APPLICATION_UID;
128 * Returns the uid that is composed from the userId and the appId.
131 public static final int getUid(int userId, int appId) {
133 return userId * PER_USER_RANGE + (appId % PER_USER_RANGE)
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/webstore_private/
webstore_private_apitest.cc 273 std::string appId = "iladmdjkfniedhfhcfoefgojhgaiaccc";
278 WebstorePrivateApi::PopApprovalForTesting(browser()->profile(), appId);
279 EXPECT_EQ(appId, approval->extension_id);
  /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;
213 return getById(connection.appId);
229 if (connection.address.equals(address) && connection.appId == id)
247 List<Connection> getConnectionByApp(int appId) {
252 if (connection.appId == appId)
  /packages/apps/Browser/src/com/android/browser/
IntentHandler.java 119 * 2-phone) Reuse tab with same appId
122 final String appId = intent
131 && (appId != null)
132 && appId.startsWith(mActivity.getPackageName())) {
133 Tab appTab = mTabControl.getTabFromAppId(appId);
141 && !mActivity.getPackageName().equals(appId)) {
144 Tab appTab = mTabControl.getTabFromAppId(appId);
155 appTab.setAppId(appId);
168 tab.setAppId(appId);
  /packages/providers/UserDictionaryProvider/src/com/android/providers/userdictionary/
DictionaryBackupAgent.java 168 int appId = cursor.getInt(COLUMN_APPID);
172 String out = name + SEPARATOR + frequency + SEPARATOR + locale + SEPARATOR + appId
227 String appid = null; local
231 if (st.hasMoreTokens()) appid = st.nextToken();
235 int appidInt = appid != null? Integer.parseInt(appid) : 0;
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
SmsUsageMonitor.java 600 int appId = UserHandle.getAppId(uid);
601 if (appId == Process.SYSTEM_UID || appId == Process.PHONE_UID || uid == 0) {
  /packages/apps/Bluetooth/src/com/android/bluetooth/hdp/
HealthService.java 163 int appId = registerHealthAppNative(appConfig.getDataType(), halRole,
165 if (appId == -1) {
179 appInfo.mAppId = appId;
189 int appId = (mApps.get(appConfig)).mAppId;
190 if (!unregisterHealthAppNative(appId)) {
191 Log.e(TAG, "Failed to unregister application: id: " + appId);
201 int appId = (mApps.get(chan.mConfig)).mAppId;
202 chan.mChannelId = connectChannelNative(devAddr, appId);
484 private void onAppRegistrationState(int appId, int state) {
486 msg.arg1 = appId;
    [all...]
  /frameworks/base/services/java/com/android/server/am/
ProcessRecord.java 513 int appId = UserHandle.getAppId(info.uid);
514 if (appId >= Process.FIRST_APPLICATION_UID) {
516 sb.append(appId - Process.FIRST_APPLICATION_UID);
519 sb.append(appId);
ActivityManagerService.java     [all...]
  /frameworks/base/services/java/com/android/server/connectivity/
Vpn.java 597 int appId = UserHandle.getAppId(Binder.getCallingUid());
603 if (appId == app.uid) {
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.app_1.3.1.R36x_v20100803.jar 
org.eclipse.equinox.launcher.jar 
org.eclipse.equinox.launcher_1.1.0.v20100507.jar 
org.eclipse.help.base_3.5.2.v201011171123.jar 
org.eclipse.osgi_3.6.1.R36x_v20100806.jar 
org.eclipse.osgi_3.6.2.R36x_v20101103.jar 
  /frameworks/base/packages/PrintSpooler/src/com/android/printspooler/
PrintSpoolerService.java 255 int state, int appId) {
265 final boolean sameAppId = appId == PrintManager.APP_ID_ANY
266 || printJob.getAppId() == appId;
292 public PrintJobInfo getPrintJobInfo(PrintJobId printJobId, int appId) {
298 && (appId == PrintManager.APP_ID_ANY
299 || appId == printJob.getAppId())) {
714 private static final String ATTR_APP_ID = "appId";
    [all...]
  /frameworks/base/services/java/com/android/server/net/
NetworkPolicyManagerService.java 213 private static final String ATTR_APP_ID = "appId";
    [all...]
  /frameworks/base/services/java/com/android/server/print/
UserState.java 168 PrintAttributes attributes, String packageName, int appId) {
172 printJob.setAppId(appId);
180 if (!mPrintJobForAppCache.onPrintJobCreated(adapter.asBinder(), appId,
218 public List<PrintJobInfo> getPrintJobInfos(int appId) {
219 List<PrintJobInfo> cachedPrintJobs = mPrintJobForAppCache.getPrintJobs(appId);
242 PrintJobInfo.STATE_ANY, appId);
258 public PrintJobInfo getPrintJobInfo(PrintJobId printJobId, int appId) {
259 PrintJobInfo printJob = mPrintJobForAppCache.getPrintJob(printJobId, appId);
261 printJob = mSpooler.getPrintJobInfo(printJobId, appId);
272 public void cancelPrintJob(PrintJobId printJobId, int appId) {
    [all...]
  /prebuilts/tools/common/eclipse/
org.eclipse.osgi_3.6.2.R36x_v20110210.jar 

Completed in 746 milliseconds