HomeSort by relevance Sort by last modified time
    Searched refs:appName (Results 1 - 25 of 237) sorted by null

1 2 3 4 5 6 7 8 910

  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/
IDebuggerConnector.java 26 * @param appName name of the application. This is typically the application's package, but
30 boolean isWorkspaceApp(String appName);
33 * Connects a debugger to a VM identified by its appName.
37 * @param appName the name of the application. Usually the application's package but this
43 boolean connectDebugger(String appName, int appPort, int selectedPort);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/
DebuggerConnector.java 46 public boolean connectDebugger(String appName, int appPort, int selectedPort) {
48 IProject project = ProjectHelper.findAndroidProjectByAppName(appName);
59 public boolean isWorkspaceApp(String appName) {
60 return mWorkspaceAppCache.isWorkspaceApp(appName);
89 public boolean isWorkspaceApp(String appName) {
90 if (mAppsNotInWorkspace.contains(appName)) {
94 String projectName = mAppsInWorkspace.get(appName);
96 IProject p = ProjectHelper.findAndroidProjectByAppName(appName);
98 mAppsNotInWorkspace.add(appName);
101 mAppsInWorkspace.put(appName, projectName)
    [all...]
  /frameworks/base/core/java/android/ddm/
DdmHandleAppName.java 89 private static void sendAPNM(String appName, int userId) {
94 4 /* appName's length */
95 + appName.length()*2 /* appName */
98 out.putInt(appName.length());
99 putString(out, appName);
DdmHandleHello.java 125 //String appName = android.app.ActivityThread.currentPackageName();
126 //if (appName == null)
127 // appName = "unknown";
128 String appName = DdmHandleAppName.getAppName();
143 + appName.length() * 2
151 out.putInt(appName.length());
153 putString(out, appName);
  /packages/apps/Settings/src/com/android/settings/deviceinfo/
StorageWizardMoveConfirm.java 57 final String appName = getPackageManager().getApplicationLabel(mApp).toString();
61 setHeaderText(R.string.storage_wizard_move_confirm_title, appName);
62 setBodyText(R.string.storage_wizard_move_confirm_body, appName, volumeName);
70 final String appName = getPackageManager().getApplicationLabel(mApp).toString();
75 intent.putExtra(EXTRA_TITLE, appName);
StorageWizardMoveProgress.java 46 final String appName = getIntent().getStringExtra(EXTRA_TITLE);
50 setHeaderText(R.string.storage_wizard_move_progress_title, appName);
51 setBodyText(R.string.storage_wizard_move_progress_body, volumeName, appName);
  /packages/apps/Settings/src/com/android/settings/applications/
DefaultSmsPreference.java 56 ComponentName appName = SmsApplication.getDefaultSmsApplication(getContext(), true);
57 if (appName != null) {
58 return appName.getPackageName();
100 ComponentName appName = SmsApplication.getDefaultSmsApplication(context, true);
101 return appName != null && appName.getPackageName().equals(pkg);
AppViewHolder.java 33 public TextView appName;
48 holder.appName = (TextView) convertView.findViewById(android.R.id.title);
  /cts/tests/tests/permission/src/android/permission/cts/
DebuggableTest.java 40 String appName = app.packageName;
42 debuggableApps.add(appName);
  /sdk/find_java2/src/
utils.h 29 void initUtils(const TCHAR *appName);
  /frameworks/base/tests/MemoryUsage/src/com/android/tests/memoryusage/
MemoryUsageTest.java 180 private String startApp(String appName) throws NameNotFoundException {
181 Log.i(TAG, "Starting " + appName);
183 if (!mNameToProcess.containsKey(appName))
184 throw new NameNotFoundException("Could not find: " + appName);
186 String process = mNameToProcess.get(appName);
187 Intent startIntent = mNameToIntent.get(appName);
210 private void measureMemory(String appName, String processName,
218 Log.i(TAG, appName + "=" + pss);
220 reportError(appName, processName, results);
225 results.putInt(mNameToResultKey.get(appName), pss)
    [all...]
  /platform_testing/tests/functional/appsmoke/src/android/test/appsmoke/
AppSmokeTest.java 76 public String appName;
80 private LaunchParameter(String appName, String packageName, String activityName) {
81 this.appName = appName;
88 return appName.compareTo(another.appName);
93 return appName;
97 return String.format("%s [activity: %s/%s]", appName, packageName, activityName);
233 long timestamp = mLauncherStrategy.launch(mAppInfo.appName, mAppInfo.packageName);
  /external/emma/core/java12/com/vladium/emma/
AppLoggers.java 36 public static Logger create (final String appName, final IProperties properties, final Logger base)
73 return Logger.create (level, null, appName, filter, base);
Processor.java 67 public synchronized final void setAppName (final String appName)
69 m_appName = appName;
EMMAProperties.java 133 final String appName = IAppConstants.APP_NAME_LC;
139 final IProperties appDefaults = wrap (Property.getProperties (appName + "_default.properties", loader));
142 final String fileName = Property.getSystemProperty (appName + ".properties");
149 final IProperties system = wrap (Property.getSystemProperties (appName));
150 final IProperties userOverrides = wrap (Property.getProperties (appName + ".properties", loader));
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
HelpActivity.java 52 final String appName = getString(R.string.app_name);
54 actionBar.setSubtitle(getString(R.string.version, appName, pi.versionName));
  /device/google/contexthub/util/nanoapp_encr/
nanoapp_encr.c 260 const char *appName = argv[0];
284 fatalUsage(appName, "unknown argument", argv[i]);
303 fatalUsage(appName, "too many positional arguments", argv[i]);
309 fatalUsage(appName, "missing argument after", prev);
312 fatalUsage(appName, "missing input file name", NULL);
320 fatalUsage(appName, "select either -d or -e", NULL);
323 fatalUsage(appName, "no key file given", NULL);
326 fatalUsage(appName, "Non-zero Key ID must be given to encrypt data", NULL);
330 fatalUsage(appName, "Key file does not exist or has incorrect size", keyFile);
340 fatalUsage(appName, "failed to create/open output file", posArg[1])
    [all...]
  /frameworks/ml/bordeaux/learning/predictor_histogram/java/android/bordeaux/learning/
HistogramPredictor.java 79 for (String appName : blackList) {
80 mBlacklist.add(appName);
222 String appName = item.getKey();
224 if (appScores.containsKey(appName)) {
225 appScore += appScores.get(appName);
227 appScores.put(appName, appScore);
234 String appName = entry.getKey();
235 if (mBlacklist.contains(appName)) {
236 Log.i(TAG, appName + " is in blacklist");
239 if (!mClassCounts.containsKey(appName)) {
    [all...]
  /frameworks/base/tests/AppLaunch/src/com/android/tests/applaunch/
AppLaunch.java 429 String appName = ri.loadLabel(pm).toString();
430 if (appName != null) {
431 mNameToIntent.put(appName, startIntent);
432 mNameToProcess.put(appName, ri.activityInfo.processName);
438 private long startApp(String appName, boolean forceStopBeforeLaunch, String launchReason)
440 Log.i(TAG, "Starting " + appName);
442 Intent startIntent = mNameToIntent.get(appName);
444 Log.w(TAG, "App does not exist: " + appName);
445 mResult.putString(mNameToResultKey.get(appName), "App does not exist");
491 private void closeApp(String appName, boolean forceStopApp)
    [all...]
  /libcore/ojluni/src/main/java/sun/net/www/
MimeLauncher.java 54 String appName;
57 appName = launchString.substring(0, index);
60 appName = launchString;
62 throw new ApplicationLaunchException(appName);
  /platform_testing/libraries/launcher-helper/src/android/support/test/launcherhelper/
ILauncherStrategy.java 113 * @param appName the name of the application to launch as shown in launcher
120 public long launch(String appName, String packageName);
  /packages/apps/PackageInstaller/src/com/android/packageinstaller/permission/ui/handheld/
SettingsWithHeader.java 66 final TextView appName = (TextView) mHeader.findViewById(R.id.name);
67 appName.setText(mLabel);
  /packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
AppScanStats.java 67 String appName;
81 appName = name;
112 scanEvent.setInitiator(truncateAppName(appName));
140 scanEvent.setInitiator(truncateAppName(appName));
208 sb.append(" " + appName);
245 ContextMap.App appEntry = contextMap.getByName(appName);
  /platform_testing/tests/functional/permission/src/com/android/functional/permissiontests/
PermissionHelper.java 198 * @param appName
203 public Boolean verifyPermissionSettingStatus(String appName, String permission,
208 openAppPermissionView(appName);
252 * @param appName
254 public void openAppPermissionView(String appName) {
276 && ((app = mDevice.wait(Until.findObject(By.res("android:id/title").text(appName)),
290 * @param appName
294 public void togglePermissionSetting(String appName, String permission, Boolean toBeSet) {
295 openAppPermissionView(appName);
384 * @param appName
    [all...]
  /prebuilts/devtools/tools/lib/
swtmenubar.jar 

Completed in 5089 milliseconds

1 2 3 4 5 6 7 8 910