Searched refs:info (Results 101 - 125 of 558) sorted by relevance

1234567891011>>

/frameworks/base/core/java/android/widget/
H A DTwoLineListItem.java99 public void onInitializeAccessibilityNodeInfo(AccessibilityNodeInfo info) { argument
100 super.onInitializeAccessibilityNodeInfo(info);
101 info.setClassName(TwoLineListItem.class.getName());
H A DDigitalClock.java126 public void onInitializeAccessibilityNodeInfo(AccessibilityNodeInfo info) { argument
127 super.onInitializeAccessibilityNodeInfo(info);
129 info.setClassName(DigitalClock.class.getName());
H A DEditText.java127 public void onInitializeAccessibilityNodeInfo(AccessibilityNodeInfo info) { argument
128 super.onInitializeAccessibilityNodeInfo(info);
129 info.setClassName(EditText.class.getName());
H A DViewSwitcher.java78 public void onInitializeAccessibilityNodeInfo(AccessibilityNodeInfo info) { argument
79 super.onInitializeAccessibilityNodeInfo(info);
80 info.setClassName(ViewSwitcher.class.getName());
H A DZoomButton.java109 public void onInitializeAccessibilityNodeInfo(AccessibilityNodeInfo info) { argument
110 super.onInitializeAccessibilityNodeInfo(info);
111 info.setClassName(ZoomButton.class.getName());
/frameworks/compile/libbcc/lib/Renderscript/
H A DRSScript.cpp38 const RSInfo* info = pScript.getInfo(); local
39 if ((info != NULL) &&
40 (info->getFloatPrecisionRequirement() != RSInfo::FP_Full)) {
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteProgram.java57 SQLiteStatementInfo info = new SQLiteStatementInfo();
60 cancellationSignalForPrepare, info);
61 mReadOnly = info.readOnly;
62 mColumnNames = info.columnNames;
63 mNumParameters = info.numParameters;
/frameworks/base/core/java/android/net/
H A DInterfaceConfiguration.java142 InterfaceConfiguration info = new InterfaceConfiguration();
143 info.mHwAddr = in.readString();
145 info.mAddr = in.readParcelable(null);
149 info.mFlags.add(in.readString());
151 return info;
/frameworks/base/services/java/com/android/server/display/
H A DDisplayDevice.java89 * @return The display device info, which should be treated as immutable by the caller.
90 * The display device should allocate a new display device info object whenever
195 DisplayDeviceInfo info = getDisplayDeviceInfoLocked();
196 viewport.deviceWidth = isRotated ? info.height : info.width;
197 viewport.deviceHeight = isRotated ? info.width : info.height;
202 * Does not need to dump the display device info because that is already dumped elsewhere.
/frameworks/support/v4/ics/android/support/v4/view/
H A DAccessibilityDelegateCompatIcs.java33 public void onInitializeAccessibilityNodeInfo(View host, Object info); argument
58 public void onInitializeAccessibilityNodeInfo(View host, AccessibilityNodeInfo info) {
59 bridge.onInitializeAccessibilityNodeInfo(host, info);
95 public static void onInitializeAccessibilityNodeInfo(Object delegate, View host, Object info) { argument
97 (AccessibilityNodeInfo) info);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DGestureRecorder.java79 public String tag, info; field in class:GestureRecorder.Gesture.TagRecord
80 public TagRecord(long when, String tag, String info) { argument
83 this.info = info;
86 return String.format("{\"type\":\"tag\", \"time\":%d, \"tag\":\"%s\", \"info\":\"%s\"}",
89 this.info
114 public void tag(long when, String tag, String info) { argument
115 mRecords.add(new TagRecord(when, tag, info));
171 public void tag(long when, String tag, String info) { argument
177 mCurrentGesture.tag(when, tag, info);
190 tag(String tag, String info) argument
[all...]
/frameworks/base/services/tests/servicestests/src/com/android/server/
H A DConnectivityServiceTest.java92 public NetworkInfo info; field in class:ConnectivityServiceTest.MockNetwork
97 info = new NetworkInfo(type, -1, getNetworkTypeName(type), null);
103 doReturn(new NetworkInfo(info)).when(tracker).getNetworkInfo();
155 mMobile.info.setDetailedState(DetailedState.CONNECTED, null, null);
162 mTrackerHandler.obtainMessage(EVENT_STATE_CHANGED, mMobile.info).sendToTarget();
176 mMobile.info.setDetailedState(DetailedState.CONNECTED, null, null);
183 mTrackerHandler.obtainMessage(EVENT_STATE_CHANGED, mMobile.info).sendToTarget();
189 mWifi.info.setDetailedState(DetailedState.CONNECTED, null, null);
199 mTrackerHandler.obtainMessage(EVENT_STATE_CHANGED, mWifi.info).sendToTarget();
211 mMobile.info
[all...]
/frameworks/base/wifi/java/android/net/wifi/
H A DWifiInfo.java346 WifiInfo info = new WifiInfo();
347 info.setNetworkId(in.readInt());
348 info.setRssi(in.readInt());
349 info.setLinkSpeed(in.readInt());
352 info.setInetAddress(InetAddress.getByAddress(in.createByteArray()));
356 info.mWifiSsid = WifiSsid.CREATOR.createFromParcel(in);
358 info.mBSSID = in.readString();
359 info.mMacAddress = in.readString();
360 info.mMeteredHint = in.readInt() != 0;
361 info
[all...]
/frameworks/av/media/libmedia/
H A DMemoryLeakTrackUtil.cpp32 extern "C" void get_malloc_leak_info(uint8_t** info, size_t* overallSize,
35 extern "C" void free_malloc_leak_info(uint8_t* info);
82 uint8_t *info = NULL; local
88 get_malloc_leak_info(&info, &overallSize, &infoSize, &totalMemory, &backtraceSize);
89 if (info) {
90 uint8_t *ptr = info;
158 free_malloc_leak_info(info);
/frameworks/base/core/java/android/content/pm/
H A DRegisteredServicesCache.java173 for (ServiceInfo<?> info : user.services.values()) {
174 fout.println(" " + info);
305 ServiceInfo<V> info = parseServiceInfo(resolveInfo);
306 if (info == null) {
307 Log.w(TAG, "Unable to load service info " + resolveInfo.toString());
310 serviceInfos.add(info);
312 Log.w(TAG, "Unable to load service info " + resolveInfo.toString(), e);
314 Log.w(TAG, "Unable to load service info " + resolveInfo.toString(), e);
329 for (ServiceInfo<V> info : serviceInfos) {
339 Integer previousUid = user.persistentServices.get(info
[all...]
H A DPackageParser.java204 /* Light weight package info.
331 if (p.activities.get(i).info.enabled) num++;
337 if (activity.info.enabled
353 if (p.receivers.get(i).info.enabled) num++;
359 if (activity.info.enabled
375 if (p.services.get(i).info.enabled) num++;
381 if (service.info.enabled
397 if (p.providers.get(i).info.enabled) num++;
403 if (provider.info.enabled
1648 if (!parsePackageItemInfo(owner, perm.info, outErro
3734 public final PermissionInfo info; field in class:PackageParser.Permission
3761 public final PermissionGroupInfo info; field in class:PackageParser.PermissionGroup
3911 public final ActivityInfo info; field in class:PackageParser.Activity
3952 public final ServiceInfo info; field in class:PackageParser.Service
3993 public final ProviderInfo info; field in class:PackageParser.Provider
4047 public final InstrumentationInfo info; field in class:PackageParser.Instrumentation
[all...]
/frameworks/base/core/java/android/printservice/
H A DPrintJob.java64 * <strong>Node:</strong>The returned info object is a snapshot of the
66 * info object that reflects the current print job state.
69 * @return The print job info.
76 PrintJobInfo info = null;
78 info = mPrintServiceClient.getPrintJobInfo(mCachedInfo.getId());
80 Log.e(LOG_TAG, "Couldn't get info for job: " + mCachedInfo.getId(), re);
82 if (info != null) {
83 mCachedInfo = info;
215 PrintJobInfo info = getInfo();
216 final int state = info
[all...]
/frameworks/base/media/tests/CameraBrowser/src/com/android/camerabrowser/
H A DObjectBrowser.java88 MtpObjectInfo info = mObjectList.get(position);
89 nameView.setText(info.getName());
91 int thumbFormat = info.getThumbFormat();
94 byte[] thumbnail = mClient.getThumbnail(mDeviceName, info.getObjectHandle());
134 MtpObjectInfo info = mObjectList.get(position);
136 if (info.getFormat() == MtpConstants.FORMAT_ASSOCIATION) {
143 intent.putExtra("object", info.getObjectHandle());
/frameworks/base/services/java/com/android/server/am/
H A DTaskRecord.java66 TaskRecord(int _taskId, ActivityInfo info, Intent _intent) { argument
68 affinity = info.taskAffinity;
69 setIntent(_intent, info);
80 void setIntent(Intent _intent, ActivityInfo info) { argument
83 if (info.targetActivity == null) {
101 info.packageName, info.targetActivity);
115 origActivity = new ComponentName(info.packageName, info.name);
126 if (info
[all...]
/frameworks/av/media/libstagefright/codecs/mp3dec/src/
H A Dpvmp3_framedecoder.cpp171 mp3Header *info = &info_data; local
181 info,
190 pVars->num_channels = (info->mode == MPG_MD_MONO) ? 1 : 2;
193 int32 outputFrameSize = (info->version_x == MPEG_1) ?
197 outputFrameSize = (info->mode == MPG_MD_MONO) ? outputFrameSize : outputFrameSize << 1;
220 if (info->error_protection)
229 if (info->layer_description == 3)
244 info,
257 if (info->error_protection)
267 * adjacent to the side-info
[all...]
/frameworks/av/media/libstagefright/mp4/
H A DFragmentedMP4Parser.cpp308 const TrackInfo *info = &mTracks.valueAt(i); local
309 seekable &= !info->mSidx.empty();
320 TrackInfo *info = &mTracks.editValueAt(trackIndex); local
322 int numSidxEntries = info->mSidx.size();
326 const SidxEntry *se = &info->mSidx[i];
335 info->mFragments.clear();
336 info->mDecodingTime = totalTime * info->mMediaTimeScale / 1000000ll;
381 const TrackInfo *info = &mTracks.valueAt(i); local
384 info
495 TrackInfo *info = &mTracks.editValueAt(trackIndex); local
809 getSample( TrackInfo *info, sp<TrackFragment> *fragment, SampleInfo *sampleInfo) argument
839 TrackInfo *info = &mTracks.editValueAt(trackIndex); local
889 TrackInfo *info = &mTracks.editValueAt(j); local
944 makeAccessUnit( TrackInfo *info, const SampleInfo &sample, const MediaDataInfo &mdatInfo, sp<ABuffer> *accessUnit) argument
1175 TrackInfo *info = editTrack(trackID, true /* createIfNecessary */); local
1204 TrackInfo *info = editTrack(mCurrentTrackID); local
1587 MediaDataInfo *info = &mMediaData.editItemAt(mMediaData.size() - 1); local
1657 TrackInfo *info = editTrack(mCurrentTrackID); local
1698 TrackInfo *info = editTrack(trackID, true /* createIfNecessary */); local
1719 TrackInfo info; local
1881 TrackInfo *info = editTrack(mTrackFragmentHeaderInfo.mTrackID); local
[all...]
/frameworks/support/v4/java/android/support/v4/app/
H A DActionBarDrawerToggle.java96 Object setActionBarUpIndicator(Object info, Activity activity, argument
98 Object setActionBarDescription(Object info, Activity activity, int contentDescRes); argument
108 public Object setActionBarUpIndicator(Object info, Activity activity, argument
111 return info;
115 public Object setActionBarDescription(Object info, Activity activity, int contentDescRes) { argument
117 return info;
128 public Object setActionBarUpIndicator(Object info, Activity activity, argument
130 return ActionBarDrawerToggleHoneycomb.setActionBarUpIndicator(info, activity,
135 public Object setActionBarDescription(Object info, Activity activity, int contentDescRes) { argument
136 return ActionBarDrawerToggleHoneycomb.setActionBarDescription(info, activit
[all...]
/frameworks/base/core/java/com/google/android/util/
H A DAbstractMessageParser.java253 * track info).
701 List<String> info = new ArrayList<String>();
702 info.add(getType().toString());
703 return info;
782 List<String> info = super.getInfo();
783 info.add(getTrack());
784 return info;
802 List<String> info = super.getInfo();
803 info.add(getURL());
804 info
[all...]
/frameworks/base/core/java/android/app/
H A DUiAutomationConnection.java161 AccessibilityServiceInfo info = new AccessibilityServiceInfo();
162 info.eventTypes = AccessibilityEvent.TYPES_ALL_MASK;
163 info.feedbackType = AccessibilityServiceInfo.FEEDBACK_GENERIC;
164 info.flags |= AccessibilityServiceInfo.FLAG_INCLUDE_NOT_IMPORTANT_VIEWS
166 info.setCapabilities(AccessibilityServiceInfo.CAPABILITY_CAN_RETRIEVE_WINDOW_CONTENT
173 manager.registerUiTestAutomationService(mToken, client, info);
/frameworks/native/cmds/screenshot/
H A Dscreenshot.c23 png_infop info; local
35 ALOGE("failed to get framebuffer info\n");
48 info = png_create_info_struct(png);
49 if (info == NULL) {
63 png_set_IHDR(png, info,
67 png_write_info(png, info);
86 png_write_end(png, info);

Completed in 518 milliseconds

1234567891011>>