Searched refs:info (Results 1 - 25 of 120) sorted by relevance

12345

/development/tools/idegen/src/
H A DLog.java26 info(message);
30 static void info(String message) { method in class:Log
H A DStopwatch.java26 Log.info(label + ": " + (now - last) + "ms");
/development/ndk/platforms/android-9/arch-x86/include/asm/
H A Ddesc_32.h69 #define LDT_entry_a(info) ((((info)->base_addr & 0x0000ffff) << 16) | ((info)->limit & 0x0ffff))
70 #define LDT_entry_b(info) (((info)->base_addr & 0xff000000) | (((info)->base_addr & 0x00ff0000) >> 16) | ((info)->limit & 0xf0000) | (((info)->read_exec_only ^ 1) << 9) | ((info)->contents << 10) | (((info)
[all...]
H A Dmath_emu.h22 struct info { struct
/development/ndk/platforms/android-9/arch-x86_64/include/asm/
H A Ddesc_32.h69 #define LDT_entry_a(info) ((((info)->base_addr & 0x0000ffff) << 16) | ((info)->limit & 0x0ffff))
70 #define LDT_entry_b(info) (((info)->base_addr & 0xff000000) | (((info)->base_addr & 0x00ff0000) >> 16) | ((info)->limit & 0xf0000) | (((info)->read_exec_only ^ 1) << 9) | ((info)->contents << 10) | (((info)
[all...]
H A Dmath_emu.h22 struct info { struct
/development/ndk/platforms/android-3/include/linux/
H A Dsmp.h17 #define smp_call_function(func,info,retry,wait) (up_smp_call_function())
18 #define on_each_cpu(func,info,retry,wait) ({ local_irq_disable(); func(info); local_irq_enable(); 0; })
/development/ndk/platforms/android-3/include/sys/
H A Dsysinfo.h37 extern int sysinfo (struct sysinfo *info);
/development/ndk/platforms/android-9/include/sys/
H A Dsysinfo.h36 extern int sysinfo (struct sysinfo *info);
/development/apps/Development/src/com/android/development/
H A DPackageSummary.java87 PackageInfo info = null;
89 info = pm.getPackageInfo(mPackageName,
97 if (info != null) {
98 mPackage.setText(info.packageName);
101 if (info.applicationInfo != null) {
103 pm.getApplicationIcon(info.applicationInfo));
104 label = info.applicationInfo.nonLocalizedLabel;
105 appClass = info.applicationInfo.className;
106 if (info.applicationInfo.enabled) {
109 if ((info
[all...]
H A DPackageBrowser.java47 PackageInfo info; field in class:PackageBrowser.MyPackageInfo
62 MyPackageInfo info = new MyPackageInfo();
63 info.info = pkgs.get(i);
64 info.label = info.info.applicationInfo.loadLabel(getPackageManager()).toString();
65 mPackageInfoList.add(info);
74 public void bindView(View view, MyPackageInfo info) { argument
78 icon.setImageDrawable(info
[all...]
/development/host/windows/usb/api/
H A Dadb_interface_enum.cpp59 bool AdbInterfaceEnumObject::Next(AdbInterfaceInfo* info, ULONG* size) { argument
81 if ((NULL == info) || (*size < entry.GetFlatSize())) {
88 entry.Save(info);
H A Dadb_api_private_defines.h75 @param[in] info Buffer to save this entry to. Must be big enough to fit it.
79 void Save(AdbInterfaceInfo* info) const {
80 info->class_id = class_id();
81 info->flags = flags();
82 wcscpy(info->device_name, device_name().c_str());
H A Dadb_interface_enum.h45 This routine uses SetupDiGetClassDevs to get our device info and calls
63 @param[out] info Upon successful completion will receive interface
67 addressed by info param. On the way out (only if buffer is not
72 in info param was not big enough and *size specifies memory size
76 bool Next(AdbInterfaceInfo* info, ULONG* size);
/development/samples/ApiDemos/src/com/example/android/apis/app/
H A DLauncherShortcuts.java83 String info = intent.toString();
86 info = info + " " + extra;
88 intentInfo.setText(info);
/development/samples/AppNavigation/src/com/example/android/appnavigation/app/
H A DAppNavHomeActivity.java46 SampleInfo info = (SampleInfo) getListAdapter().getItem(pos);
47 startActivity(info.intent);
62 final ResolveInfo info = infos.get(i);
63 final CharSequence labelSeq = info.loadLabel(pm);
64 String label = labelSeq != null ? labelSeq.toString() : info.activityInfo.name;
67 target.setClassName(info.activityInfo.applicationInfo.packageName,
68 info.activityInfo.name);
/development/samples/SupportAppNavigation/src/com/example/android/support/appnavigation/app/
H A DAppNavHomeActivity.java46 SampleInfo info = (SampleInfo) getListAdapter().getItem(pos);
47 startActivity(info.intent);
62 final ResolveInfo info = infos.get(i);
63 final CharSequence labelSeq = info.loadLabel(pm);
64 String label = labelSeq != null ? labelSeq.toString() : info.activityInfo.name;
67 target.setClassName(info.activityInfo.applicationInfo.packageName,
68 info.activityInfo.name);
/development/samples/SampleSyncAdapter/samplesyncadapter_server/
H A Dweb_services.py70 logging.info('Authenticatng username: ' + self.username)
98 logging.info('Validating username: ' + self.username)
131 it returns user's contact info in JSON format.
139 logging.info('*** Starting contact sync ***')
159 logging.info('Returning ' + str(len(updated_contacts)) + ' contact records')
166 logging.info('* Processing server changes')
176 logging.info('Client sync state: ' + client_state)
194 logging.info('New sync state: ' + high_water_mark)
215 logging.info('Server-side updates: ' + str(update_count))
216 logging.info('Serve
[all...]
/development/samples/ApiDemos/src/com/example/android/apis/graphics/
H A DGLES20Activity.java51 ConfigurationInfo info = am.getDeviceConfigurationInfo();
52 return (info.reqGlEsVersion >= 0x20000);
/development/tools/axl/
H A Dlog.py46 def info(self, *logstrs): member in class:Log
53 # default to info
54 log = info
/development/samples/training/multiscreen/newsreader/libs/
H A Dandroid-support-v4.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/support/ android/support/v4/ android/support/v4/content/ ...
/development/ndk/platforms/android-8/include/
H A Ddlfcn.h50 extern int dladdr(const void* addr, Dl_info *info);
/development/samples/HelloEffects/src/com/example/android/mediafx/
H A DGLToolbox.java31 String info = GLES20.glGetShaderInfoLog(shader);
35 shaderType + ":" + info);
63 String info = GLES20.glGetProgramInfoLog(program);
66 throw new RuntimeException("Could not link program: " + info);
/development/host/windows/usb/winusb/
H A Dadb_winusb_interface.cpp239 AdbEndpointInformation* info) {
245 if (NULL == info) {
265 info->max_packet_size = pipe_info.MaximumPacketSize;
266 info->max_transfer_size = 0xFFFFFFFF;
267 info->endpoint_address = pipe_info.PipeId;
268 info->polling_interval = pipe_info.Interval;
269 info->setting_index = interface_number();
272 info->endpoint_type = AdbEndpointTypeControl;
276 info->endpoint_type = AdbEndpointTypeIsochronous;
280 info
237 GetEndpointInformation( UCHAR endpoint_index, AdbEndpointInformation* info) argument
[all...]
/development/samples/Support4Demos/src/com/example/android/supportv4/accessibility/
H A DAccessibilityDelegateSupportActivity.java86 AccessibilityNodeInfoCompat info) {
87 super.onInitializeAccessibilityNodeInfo(host, info);
91 info.setText(getContext().getString(

Completed in 674 milliseconds

12345