/hardware/qcom/wlan/qcwcn/wifi_hal/ |
common.cpp | 46 wifi_handle getWifiHandle(hal_info *info) 48 return (wifi_handle)info; 51 wifi_interface_handle getIfaceHandle(interface_info *info) 53 return (wifi_interface_handle)info; 58 hal_info *info = (hal_info *)handle; local 62 if (info->num_event_cb < info->alloc_event_cb) { 63 info->event_cb[info->num_event_cb].nl_cmd = cmd; 64 info->event_cb[info->num_event_cb].vendor_id = 0 79 hal_info *info = (hal_info *)handle; local 110 hal_info *info = (hal_info *)handle; local 129 hal_info *info = (hal_info *)handle; local 149 hal_info *info = (hal_info *)handle; local 166 hal_info *info = (hal_info *)handle; local 185 hal_info *info = (hal_info *)handle; local [all...] |
/libcore/luni/src/main/java/org/apache/harmony/security/pkcs10/ |
CertificationRequest.java | 44 private CertificationRequestInfo info; field in class:CertificationRequest 55 public CertificationRequest(CertificationRequestInfo info, 57 this.info = info; 62 private CertificationRequest(CertificationRequestInfo info, 64 this(info, algId, signature); 69 return info; 90 CertificationRequestInfo.ASN1, // info 106 values[0] = certReq.info;
|
/libcore/support/src/test/java/tests/resources/Package/ |
hyts_package.jar | |
/packages/apps/Launcher2/src/com/android/launcher2/ |
PendingAddItemInfo.java | 51 AppWidgetProviderInfo info; field in class:PendingAddWidgetInfo 62 this.info = i; 72 info = copy.info;
|
/packages/apps/Settings/src/com/android/settings/accessibility/ |
LocalePreference.java | 58 final LocalePicker.LocaleInfo info = locales.get(i); local 59 entries[i + 1] = info.toString(); 60 entryValues[i + 1] = info.getLocale().toString();
|
/packages/wallpapers/LivePicker/src/com/android/wallpaper/livepicker/ |
LiveWallpaperListAdapter.java | 77 LiveWallpaperInfo info = new LiveWallpaperInfo(); local 78 list.add(info); 116 if (holder.title != null && wallpaperInfo.info != null) { 117 holder.title.setText(wallpaperInfo.info.loadLabel(mPackageManager)); 129 public WallpaperInfo info; field in class:LiveWallpaperListAdapter.LiveWallpaperInfo 176 WallpaperInfo info = null; local 178 info = new WallpaperInfo(mContext, resolveInfo); 189 wallpaper.intent.setClassName(info.getPackageName(), info.getServiceName()); 190 wallpaper.info = info [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/ |
EmptyLaunchAction.java | 28 public boolean doLaunchAction(DelayedLaunchInfo info, Collection<IDevice> devices) { 30 doLaunchAction(info, d); 36 public boolean doLaunchAction(DelayedLaunchInfo info, IDevice device) { 39 info.getPackageFile().getFullPath().toOSString()); 40 AdtPlugin.printToConsole(info.getProject(), msg, "Done!");
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/junit/ |
AndroidJUnitLaunchAction.java | 67 public boolean doLaunchAction(DelayedLaunchInfo info, Collection<IDevice> devices) { 70 AdtPlugin.printToConsole(info.getProject(), msg); 73 mLaunchInfo.setDebugMode(info.isDebugMode()); 76 final String mode = info.isDebugMode() ? ILaunchManager.DEBUG_MODE : 79 junitDelegate.launch(info.getLaunch().getLaunchConfiguration(), mode, info.getLaunch(), 80 info.getMonitor()); 84 AdtPlugin.printErrorToConsole(info.getProject(), 155 VMTestRunner(AndroidJUnitLaunchInfo info) { 156 mJUnitInfo = info; [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/mock/ |
TestLogger.java | 40 public void info(String msgFormat, Object... args) { method in class:TestLogger 46 info(msgFormat, args); method
|
/system/core/libsync/ |
sync.c | 54 struct sync_fence_info_data *info; local 57 info = malloc(4096); 58 if (info == NULL) 61 info->len = 4096; 62 err = ioctl(fd, SYNC_IOC_FENCE_INFO, info); 64 free(info); 68 return info; 71 struct sync_pt_info *sync_pt_info(struct sync_fence_info_data *info, 75 itr = (struct sync_pt_info *) info->pt_info; 79 if ((__u8 *)itr - (__u8 *)info >= (int)info->len [all...] |
/system/core/libutils/ |
misc.cpp | 56 sysprop_change_callback_info info; local 57 info.callback = cb; 58 info.priority = priority; 62 gSyspropList->insertAt(info, i); 68 gSyspropList->add(info);
|
/system/core/run-as/ |
run-as.c | 112 PackageInfo info; local 126 if (get_package_info(pkgname, &info) < 0) { 132 if (info.uid < AID_APP) { 138 if (!info.isDebuggable) { 144 if (check_data_path(info.dataDir, info.uid) < 0) { 152 uid = gid = info.uid; 158 if (selinux_android_setcontext(uid, 0, info.seinfo, pkgname) < 0) { 167 ret = chdir(info.dataDir);
|
/system/keymaster/ |
google_keymaster_test_utils.h | 104 int info(const char* fmt, ...) const { function in class:keymaster::test::StdoutLogger
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/manifest/ |
ManifestInfoTest.java | 50 ManifestInfo info = getManifestInfo( local 55 Map<String, ActivityAttributes> map = info.getActivityAttributesMap(); 57 assertEquals("com.android.unittest", info.getPackage()); 58 assertEquals("Theme", ResourceHelper.styleToTheme(info.getDefaultTheme(null, NORMAL))); 59 assertEquals("@android:style/Theme", info.getDefaultTheme(null, null)); 60 assertEquals("Theme", ResourceHelper.styleToTheme(info.getDefaultTheme(null, XLARGE))); 64 ManifestInfo info = getManifestInfo( local 69 Map<String, ActivityAttributes> map = info.getActivityAttributesMap(); 71 assertEquals("com.android.unittest", info.getPackage()); 72 assertEquals("Theme.Holo", ResourceHelper.styleToTheme(info.getDefaultTheme(null 78 ManifestInfo info = getManifestInfo( local 92 ManifestInfo info = getManifestInfo( local 123 ManifestInfo info = getManifestInfo( local 160 ManifestInfo info = getManifestInfo( local 179 ManifestInfo info = getManifestInfo( local 197 ManifestInfo info = getManifestInfo( local 223 ManifestInfo info = ManifestInfo.get(getProject()); local 229 ManifestInfo info; local [all...] |
/cts/tests/tests/drm/src/android/drm/cts/ |
DrmSupportInfoTest.java | 92 DrmSupportInfo info = new DrmSupportInfo(); local 93 info.setDescription(description); 94 assertEquals(info.getDescriprition(), description); 98 DrmSupportInfo info = new DrmSupportInfo(); local 100 info.setDescription(description); 108 DrmSupportInfo info = new DrmSupportInfo(); local 110 info.addFileSuffix(fileSuffix); 111 info = null; 119 DrmSupportInfo info = new DrmSupportInfo(); local 120 info.addFileSuffix(fileSuffix) 127 DrmSupportInfo info = new DrmSupportInfo(); local 137 DrmSupportInfo info = new DrmSupportInfo(); local [all...] |
/development/samples/Support4Demos/src/com/example/android/supportv4/app/ |
SharingReceiverSupport.java | 54 TextView info = (TextView) findViewById(R.id.app_info); local 57 info.setCompoundDrawables(d, null, null, null); 58 info.setText(intentReader.getCallingApplicationLabel());
|
/external/proguard/src/proguard/optimize/info/ |
ParameterUsageMarker.java | 21 package proguard.optimize.info; 222 MethodOptimizationInfo info = MethodOptimizationInfo.getMethodOptimizationInfo(method); local 223 if (info != null) 225 info.setParameterSize(parameterSize); 235 MethodOptimizationInfo info = MethodOptimizationInfo.getMethodOptimizationInfo(method); local 236 return info != null ? info.getParameterSize() : 0; 245 MethodOptimizationInfo info = MethodOptimizationInfo.getMethodOptimizationInfo(method); local 246 if (info != null) 248 info.setParameterUsed(variableIndex) 258 MethodOptimizationInfo info = MethodOptimizationInfo.getMethodOptimizationInfo(method); local 271 MethodOptimizationInfo info = MethodOptimizationInfo.getMethodOptimizationInfo(method); local 282 MethodOptimizationInfo info = MethodOptimizationInfo.getMethodOptimizationInfo(method); local [all...] |
/frameworks/base/media/tests/CameraBrowser/src/com/android/camerabrowser/ |
ObjectBrowser.java | 88 MtpObjectInfo info = mObjectList.get(position); local 89 nameView.setText(info.getName()); 91 int thumbFormat = info.getThumbFormat(); 94 byte[] thumbnail = mClient.getThumbnail(mDeviceName, info.getObjectHandle()); 134 MtpObjectInfo info = mObjectList.get(position); local 136 if (info.getFormat() == MtpConstants.FORMAT_ASSOCIATION) { 143 intent.putExtra("object", info.getObjectHandle());
|
StorageBrowser.java | 81 MtpStorageInfo info = mStorageList.get(position); local 82 if (info != null) { 83 view.setText(info.getDescription());
|
/frameworks/base/services/core/java/com/android/server/hdmi/ |
PowerStatusMonitorAction.java | 108 for (HdmiDeviceInfo info : deviceInfos) { 109 mPowerStatus.append(info.getLogicalAddress(), info.getDevicePowerStatus()); 116 for (HdmiDeviceInfo info : deviceInfos) { 117 final int logicalAddress = info.getLogicalAddress();
|
/frameworks/support/v7/appcompat/src/android/support/v7/app/ |
ActionBarDrawerToggleHoneycomb.java | 49 public static SetIndicatorInfo setActionBarUpIndicator(SetIndicatorInfo info, Activity activity, 51 if (true || info == null) { 52 info = new SetIndicatorInfo(activity); 54 if (info.setHomeAsUpIndicator != null) { 57 info.setHomeAsUpIndicator.invoke(actionBar, drawable); 58 info.setHomeActionContentDescription.invoke(actionBar, contentDescRes); 62 } else if (info.upIndicatorView != null) { 63 info.upIndicatorView.setImageDrawable(drawable); 67 return info; 70 public static SetIndicatorInfo setActionBarDescription(SetIndicatorInfo info, Activity activity [all...] |
/packages/apps/Tag/src/com/android/apps/tag/record/ |
UriRecord.java | 109 RecordUtils.ClickInfo info = (RecordUtils.ClickInfo) view.getTag(); local 111 info.activity.startActivity(info.intent); 112 info.activity.finish(); 115 Log.e(TAG, "Failed to launch activity for intent " + info.intent, e);
|
VCardRecord.java | 166 RecordUtils.ClickInfo info = (RecordUtils.ClickInfo) view.getTag(); local 168 info.activity.startActivity(info.intent); 169 info.activity.finish(); 172 Log.e(TAG, "Failed to launch activity for intent " + info.intent, e);
|
/packages/providers/DownloadProvider/tests/src/com/android/providers/downloads/ |
FakeSystemFacade.java | 49 final NetworkInfo info = new NetworkInfo(mActiveNetworkType, 0, null, null); local 50 info.setDetailedState(DetailedState.CONNECTED, null, null); 51 return info;
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
CanvasViewInfoTest.java | 204 // in view info) 246 // between view info and ui element node children 303 // between view info and ui element node children 346 // between view info and ui element node children [all...] |