Searched refs:info (Results 126 - 150 of 700) sorted by relevance

1234567891011>>

/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/core/java/com/android/server/display/
H A DDisplayDevice.java99 * @return The display device info, which should be treated as immutable by the caller.
100 * The display device should allocate a new display device info object whenever
209 DisplayDeviceInfo info = getDisplayDeviceInfoLocked();
210 viewport.deviceWidth = isRotated ? info.height : info.width;
211 viewport.deviceHeight = isRotated ? info.width : info.height;
216 * 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/av/media/libmedia/
H A DMemoryLeakTrackUtil.cpp33 extern "C" void get_malloc_leak_info(uint8_t** info, size_t* overallSize,
36 extern "C" void free_malloc_leak_info(uint8_t* info);
87 uint8_t *info = NULL; local
93 get_malloc_leak_info(&info, &overallSize, &infoSize, &totalMemory, &backtraceSize);
94 if (info) {
95 uint8_t *ptr = info;
169 free_malloc_leak_info(info);
/frameworks/base/core/java/android/content/pm/
H A DRegisteredServicesCache.java205 for (ServiceInfo<?> info : user.services.values()) {
206 fout.println(" " + info);
340 ServiceInfo<V> info = parseServiceInfo(resolveInfo);
341 if (info == null) {
342 Log.w(TAG, "Unable to load service info " + resolveInfo.toString());
345 serviceInfos.add(info);
347 Log.w(TAG, "Unable to load service info " + resolveInfo.toString(), e);
349 Log.w(TAG, "Unable to load service info " + resolveInfo.toString(), e);
362 for (ServiceInfo<V> info : serviceInfos) {
372 Integer previousUid = user.persistentServices.get(info
[all...]
H A DPackageParser.java466 if (p.activities.get(i).info.enabled) num++;
472 if (activity.info.enabled
488 if (p.receivers.get(i).info.enabled) num++;
494 if (activity.info.enabled
510 if (p.services.get(i).info.enabled) num++;
516 if (service.info.enabled
532 if (p.providers.get(i).info.enabled) num++;
538 if (provider.info.enabled
2178 if (!parsePackageItemInfo(owner, perm.info, outError,
2190 perm.info
4552 public final PermissionInfo info; field in class:PackageParser.Permission
4579 public final PermissionGroupInfo info; field in class:PackageParser.PermissionGroup
4751 public final ActivityInfo info; field in class:PackageParser.Activity
4805 public final ServiceInfo info; field in class:PackageParser.Service
4846 public final ProviderInfo info; field in class:PackageParser.Provider
4900 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/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DPreviewInflater.java51 WidgetInfo info = getWidgetInfo(intent);
52 if (info == null) {
55 View v = inflateWidgetView(info);
80 WidgetInfo info = new WidgetInfo();
103 info.contextPackage = resolved.activityInfo.packageName;
104 info.layoutId = layoutId;
105 return info;
/frameworks/base/services/core/java/com/android/server/hdmi/
H A DHdmiUtils.java289 static HdmiDeviceInfo cloneHdmiDeviceInfo(HdmiDeviceInfo info, int newPowerStatus) { argument
290 return new HdmiDeviceInfo(info.getLogicalAddress(),
291 info.getPhysicalAddress(), info.getPortId(), info.getDeviceType(),
292 info.getVendorId(), info.getDisplayName(), newPowerStatus);
H A DHotplugDetectionAction.java185 for (HdmiDeviceInfo info : infoList) {
187 if (info.getDeviceType() == HdmiDeviceInfo.DEVICE_AUDIO_SYSTEM) {
188 set.set(info.getLogicalAddress());
191 set.set(info.getLogicalAddress());
229 HdmiDeviceInfo info = tv().getCecDeviceInfo(address);
230 if (info != null) {
231 tv().handleRemoveActiveRoutingPath(info.getPhysicalAddress());
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/integration/
H A DCameraBinderTest.java86 CameraInfo info = new CameraInfo();
87 info.info.facing = -1;
88 info.info.orientation = -1;
91 "Camera service returned info for camera " + cameraId,
92 mUtils.getCameraService().getCameraInfo(cameraId, info) ==
94 assertTrue("Facing was not set for camera " + cameraId, info.info.facing != -1);
96 info
[all...]
/frameworks/base/services/core/java/com/android/server/content/
H A DSyncOperation.java63 /** Identifying info for the target for this operation. */
108 private SyncOperation(SyncStorageEngine.EndPoint info, int reason, int source, Bundle extras, argument
111 this.target = info;
137 this.key = toKey(info, this.extras);
285 public static String toKey(SyncStorageEngine.EndPoint info, Bundle extras) { argument
287 if (info.target_provider) {
288 sb.append("provider: ").append(info.provider);
289 sb.append(" account {name=" + info.account.name
291 + info.userId
293 + info
[all...]
H A DSyncStorageEngine.java336 AuthorityInfo(EndPoint info, int id) { argument
337 target = info;
339 enabled = info.target_provider ?
342 if (info.target_service) {
403 public void onSyncRequest(EndPoint info, int reason, Bundle extras); argument
756 public Pair<Long, Long> getBackoff(EndPoint info) { argument
758 AuthorityInfo authority = getAuthorityLocked(info, "getBackoff");
768 * the account or provider info be null, which signifies all accounts or providers.
770 public void setBackoff(EndPoint info, long nextSyncTime, long nextDelay) { argument
772 Log.v(TAG, "setBackoff: " + info
879 getDelayUntilTime(EndPoint info) argument
889 setDelayUntilTime(EndPoint info, long delayUntil) argument
904 updateOrAddPeriodicSync(EndPoint info, long period, long flextime, Bundle extras) argument
965 removePeriodicSync(EndPoint info, Bundle extras) argument
1009 getPeriodicSyncs(EndPoint info) argument
1057 isSyncActive(EndPoint info) argument
1471 getCopyOfAuthorityWithSyncStatus(EndPoint info) argument
1500 getStatusByAuthority(EndPoint info) argument
1521 isSyncPending(EndPoint info) argument
1595 getAuthorityLocked(EndPoint info, String tag) argument
1646 getOrCreateAuthorityLocked(EndPoint info, int ident, boolean doWrite) argument
1675 createAuthorityLocked(EndPoint info, int ident, boolean doWrite) argument
1693 removeAuthority(EndPoint info) argument
[all...]
/frameworks/compile/libbcc/lib/Renderscript/
H A DRSCompilerDriver.cpp114 // Acquire the read lock on object_file for reading its RS info file.
127 // Open and load the RS info file.
130 RSInfo *info = RSInfo::ReadFromFile(info_file); local
135 if (info == NULL) {
141 // Check that the info in the RS info file is consistent we what we want.
149 // If the info file contains different hash for the source than what we are
153 if (!info->IsConsistent(output_path.c_str(), expectedSourceHash, expectedCompileCommandLine,
156 delete info;
163 RSExecutable *executable = RSExecutable::Create(*info, *object_fil
225 RSInfo *info = NULL; local
432 RSInfo* info = RSInfo::ExtractFromSource(pScript.getSource(), bitcode_sha1, local
[all...]
/frameworks/support/v4/java/android/support/v4/app/
H A DActionBarDrawerToggle.java107 Object setActionBarUpIndicator(Object info, Activity activity, argument
109 Object setActionBarDescription(Object info, Activity activity, int contentDescRes); argument
119 public Object setActionBarUpIndicator(Object info, Activity activity, argument
122 return info;
126 public Object setActionBarDescription(Object info, Activity activity, int contentDescRes) { argument
128 return info;
139 public Object setActionBarUpIndicator(Object info, Activity activity, argument
141 return ActionBarDrawerToggleHoneycomb.setActionBarUpIndicator(info, activity,
146 public Object setActionBarDescription(Object info, Activity activity, int contentDescRes) { argument
147 return ActionBarDrawerToggleHoneycomb.setActionBarDescription(info, activit
160 setActionBarUpIndicator(Object info, Activity activity, Drawable themeImage, int contentDescRes) argument
167 setActionBarDescription(Object info, Activity activity, int contentDescRes) argument
[all...]
/frameworks/base/wifi/java/android/net/wifi/
H A DWifiInfo.java563 WifiInfo info = new WifiInfo();
564 info.setNetworkId(in.readInt());
565 info.setRssi(in.readInt());
566 info.setLinkSpeed(in.readInt());
567 info.setFrequency(in.readInt());
570 info.setInetAddress(InetAddress.getByAddress(in.createByteArray()));
574 info.mWifiSsid = WifiSsid.CREATOR.createFromParcel(in);
576 info.mBSSID = in.readString();
577 info.mMacAddress = in.readString();
578 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/compile/mclinker/lib/LD/
H A DGarbageCollection.cpp229 ResolveInfo* info = info_it.getEntry(); local
230 if (!info->isDefine() || info->isLocal())
233 if (!info->isInDyn())
236 LDSymbol* sym = info->outSymbol();
257 ResolveInfo* info = info_it.getEntry(); local
258 if (!info->isDefine() ||
259 info->isLocal() ||
260 info->shouldForceLocal(m_Config))
262 LDSymbol* sym = info
283 ResolveInfo* info = sym->resolveInfo(); local
[all...]
/frameworks/base/core/java/android/os/
H A DStrictMode.java1167 final ViolationInfo info = new ViolationInfo(e, e.getPolicy());
1168 info.violationUptimeMillis = SystemClock.uptimeMillis();
1169 handleViolationWithTimingAttempt(info);
1177 void handleViolationWithTimingAttempt(final ViolationInfo info) { argument
1197 (info.policy & THREAD_PENALTY_MASK) == PENALTY_DEATH) {
1198 info.durationMillis = -1; // unknown (redundant, already set)
1199 handleViolation(info);
1208 records.add(info);
1216 final IWindowManager windowManager = (info.policy & PENALTY_FLASH) != 0 ?
1266 void handleViolation(final ViolationInfo info) { argument
1377 executeDeathPenalty(ViolationInfo info) argument
1390 dropboxViolationAsync( final int violationMaskSubset, final ViolationInfo info) argument
[all...]
/frameworks/av/media/libstagefright/
H A DMediaCodec.cpp204 const sp<MediaCodecInfo> info = mcl->getCodecInfo(codecIdx); local
206 info->getSupportedMimes(&mimes);
590 const BufferInfo &info = buffers->itemAt(index); local
591 if (info.mOwnedByClient) {
594 *buffer = info.mEncryptedData;
596 *buffer = info.mData;
598 *format = info.mFormat;
963 BufferInfo info; local
964 info.mBufferID = portDesc->bufferIDAt(i);
965 info
1599 const BufferInfo &info = srcBuffers.itemAt(i); local
1728 const BufferInfo *info = local
1807 BufferInfo *info = &buffers->editItemAt(i); local
1835 BufferInfo *info = &buffers->editItemAt(i); local
1911 BufferInfo *info = &mPortBuffers[kPortIndexInput].editItemAt(index); local
1989 BufferInfo *info = &mPortBuffers[kPortIndexOutput].editItemAt(index); local
2045 BufferInfo *info = &mPortBuffers[portIndex].editItemAt(index); local
[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/media/java/android/media/projection/
H A DMediaProjectionManager.java114 Log.e(TAG, "Unable to get the active projection info", e);
169 public abstract void onStart(MediaProjectionInfo info); argument
170 public abstract void onStop(MediaProjectionInfo info); argument
187 public void onStart(final MediaProjectionInfo info) { argument
191 mCallback.onStart(info);
197 public void onStop(final MediaProjectionInfo info) { argument
201 mCallback.onStop(info);

Completed in 690 milliseconds

1234567891011>>