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

1 2 3 4 5 6 7 8 91011>>

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt.package/
about.ini 5 appName=AD
  /platform_testing/libraries/launcher-helper/src/android/support/test/launcherhelper/
IAutoLauncherStrategy.java 34 * @param appName open app from media facet.
36 void openMediaFacet(String appName);
40 * @param appName open app from Settings facet.
42 void openSettingsFacet(String appName);
46 * @param appName open app from maps facet.
48 void openMapsFacet(String appName);
AutoLauncherStrategy.java 76 public void openMediaFacet(String appName) {
77 BySelector button = By.clickable(true).hasDescendant(By.text(appName));
89 Assert.assertNotNull("Unable to find application " + appName, choice);
97 public void openSettingsFacet(String appName) {
103 public void openMapsFacet(String appName) {
113 public void openApp(String appName) {
127 if (!mDevice.hasObject(By.text(appName))) {
131 while (!mDevice.hasObject(By.text(appName)) && scrollContainer.isEnabled());
135 UiObject2 application = mDevice.wait(Until.findObject(By.text(appName)), APP_INIT_WAIT);
140 Assert.fail("Unable to find application " + appName);
    [all...]
  /device/google/contexthub/contexthubhal/
system_comms.h 334 bool writeApp(hub_app_name_t &appName, const uint8_t *data, int32_t len);
335 int32_t readApp(hub_app_name_t &appName, void **data);
336 bool cmpApp(hub_app_name_t &appName, const uint8_t *data, uint32_t len);
340 bool setCachedCrc(hub_app_name_t &appName, uint32_t crc) {
341 if (!isAppPresent(appName))
344 apps_[appName.id]->cached_napp = true;
345 apps_[appName.id]->cached_crc = crc;
346 apps_[appName.id]->cached_start = false;
351 bool clearCachedApp(hub_app_name_t &appName) {
352 if (!isAppPresent(appName))
    [all...]
  /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);
  /system/chre/platform/linux/include/chre/target_platform/
static_nanoapp_init.h 28 * @param appName the name of the nanoapp. This will be prefixed by gNanoapp
32 #define CHRE_STATIC_NANOAPP_INIT(appName, appId_, appVersion_) \
35 UniquePtr<Nanoapp> initializeStaticNanoapp##appName() { \
43 appInfo.name = #appName; \
52 FATAL_ERROR("Failed to allocate nanoapp " #appName); \
  /system/chre/platform/slpi/include/chre/target_platform/
static_nanoapp_init.h 29 * @param appName the name of the nanoapp. This will be prefixed by gNanoapp
34 #define CHRE_STATIC_NANOAPP_INIT(appName, appId_, appVersion_) \
37 UniquePtr<Nanoapp> initializeStaticNanoapp##appName() { \
45 appInfo.name = #appName; \
54 FATAL_ERROR("Failed to allocate nanoapp " #appName); \
  /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);
  /external/skia/platform_tools/android/apps/
build.gradle 22 def setupSkiaLibraryBuild(project, appVariants, appName) {
26 commandLine constructBuildCommand(project, variant, appName).split()
35 include "${appName}.so"
90 def constructBuildCommand(project, variant, appName) {
108 return "${depotToolsDir}/ninja -C $out_dir $appName"
  /external/skqp/platform_tools/android/apps/
build.gradle 22 def setupSkiaLibraryBuild(project, appVariants, appName) {
26 commandLine constructBuildCommand(project, variant, appName).split()
35 include "${appName}.so"
90 def constructBuildCommand(project, variant, appName) {
108 return "${depotToolsDir}/ninja -C $out_dir $appName"
  /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/tests/MemoryUsage/src/com/android/tests/memoryusage/
MemoryUsageTest.java 179 private String startApp(String appName) throws NameNotFoundException {
180 Log.i(TAG, "Starting " + appName);
182 if (!mNameToProcess.containsKey(appName))
183 throw new NameNotFoundException("Could not find: " + appName);
185 String process = mNameToProcess.get(appName);
186 Intent startIntent = mNameToIntent.get(appName);
209 private void measureMemory(String appName, String processName,
217 Log.i(TAG, appName + "=" + pss);
219 reportError(appName, processName, results);
224 results.putInt(mNameToResultKey.get(appName), pss)
    [all...]
  /platform_testing/tests/perf/PerfTransitionTest/src/com/android/apptransition/tests/
AppTransitionTests.java 193 String appName = mAppListArray[appCount];
195 if (setupAppLaunch(appName) == ILauncherStrategy.LAUNCH_FAILED_TIMESTAMP) {
199 appName
208 String.format("%s-%d", appName, launchCount));
210 mLauncherStrategy.launch(appName, mComponentName.split("\\/")[0]);
218 appName
227 updateResult(appName);
245 String appName = mAppListArray[appCount];
247 if (setupAppLaunch(appName) == ILauncherStrategy.LAUNCH_FAILED_TIMESTAMP) {
255 String.format("%s-%d", appName, (launchCount)))
    [all...]
  /packages/apps/Settings/src/com/android/settings/applications/defaultapps/
DefaultSmsPreferenceController.java 68 ComponentName appName = SmsApplication.getDefaultSmsApplication(context, true);
69 return appName != null && appName.getPackageName().equals(pkg);
DefaultSmsPicker.java 94 final ComponentName appName = SmsApplication.getDefaultSmsApplication(context, true);
95 if (appName != null) {
96 return appName.getPackageName();
  /packages/apps/DocumentsUI/src/com/android/documentsui/inspector/actions/
Action.java 84 String appName = "";
92 appName = (String) mPm.getApplicationLabel(appInfo);
94 appName = APP_NAME_UNKNOWN;
96 return appName;
  /cts/tests/tests/permission/src/android/permission/cts/
DebuggableTest.java 40 String appName = app.packageName;
42 debuggableApps.add(appName);
  /device/linaro/bootloader/edk2/BaseTools/Source/C/Makefiles/
ms.app 14 APPLICATION = $(BIN_PATH)\$(APPNAME).exe
31 del /f /q $(OBJECTS) $(APPLICATION) *.pdb $(BIN_PATH)\$(APPNAME).pdb > nul
  /external/walt/android/WALT/app/src/main/jni/
sync_clock_jni.c 23 #define APPNAME "ClockSyncJNI"
42 // __android_log_print(ANDROID_LOG_VERBOSE, APPNAME, "Returned from sync_clocks\n");
  /packages/apps/Settings/src/com/android/settings/deviceinfo/
StorageWizardMoveConfirm.java 68 final String appName = getPackageManager().getApplicationLabel(mApp).toString();
72 setHeaderText(R.string.storage_wizard_move_confirm_title, appName);
73 setBodyText(R.string.storage_wizard_move_confirm_body, appName, volumeName);
95 final String appName = getPackageManager().getApplicationLabel(mApp).toString();
100 intent.putExtra(EXTRA_TITLE, appName);
  /platform_testing/tests/functional/appsmoke/src/android/test/appsmoke/
AppSmokeTest.java 80 public String appName;
84 private LaunchParameter(String appName, String packageName, String activityName) {
85 this.appName = appName;
92 return appName.compareTo(another.appName);
97 return appName;
101 return String.format("%s [activity: %s/%s]", appName, packageName, activityName);
250 long timestamp = mLauncherStrategy.launch(mAppInfo.appName, mAppInfo.packageName);
  /external/vulkan-validation-layers/common/
android_util.cpp 71 const char *appName = appTag ? appTag : (const char *)"appTag";
73 vector[0] = (char *)malloc(strlen(appName) * sizeof(char));
74 strcpy(vector[0], appName);
  /frameworks/native/opengl/tools/glgen/stubs/jsr239/
GLImplHeader.java-impl 65 private static boolean allowIndirectBuffers(String appName) {
70 ApplicationInfo applicationInfo = pm.getApplicationInfo(appName, 0, UserHandle.myUserId());
79 appName, version));
  /packages/apps/Settings/src/com/android/settings/fuelgauge/batterytip/
HighUsageAdapter.java 48 public TextView appName;
55 appName = v.findViewById(R.id.app_name);
80 holder.appName.setText(Utils.getApplicationLabel(mContext, app.packageName));

Completed in 580 milliseconds

1 2 3 4 5 6 7 8 91011>>