Searched defs:info (Results 176 - 200 of 509) sorted by relevance

1234567891011>>

/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
H A DState.java151 public void pushDocument(DocumentInfo info) { argument
152 if (DEBUG) Log.d(TAG, "Adding doc to stack: " + info);
153 if (!mInitialDocChanged && stack.size() > 0 && !info.equals(stack.peek())) {
156 stack.push(info);
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/dirlist/
H A DModel.java67 @Nullable String info; field in class:Model
91 info = null;
120 info = extras.getString(DocumentsContract.EXTRA_INFO);
/frameworks/base/packages/Osu/src/com/android/hotspot2/
H A DWifiNetworkAdapter.java274 * @param osuInfo The OSU info object that defines the parameters for the network. An OSU
277 * @param info An opaque string that is passed on to any user notification. The string is used
288 public Integer connect(OSUInfo osuInfo, final String info) throws IOException { argument
329 "Cannot connect to OSU network: " + reason, info);
355 "Cannot connect to OSU network: " + reason, info);
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DQSTileBaseView.java166 public void onInitializeAccessibilityNodeInfo(AccessibilityNodeInfo info) { argument
167 super.onInitializeAccessibilityNodeInfo(info);
169 info.setClassName(mAccessibilityClass);
173 info.setText(label);
174 info.setChecked(mTileState);
175 info.setCheckable(true);
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
H A DBatteryTile.java214 public void onBatteryInfoLoaded(BatteryInfo info) {
216 bindBatteryInfo(info);
241 private void bindBatteryInfo(BatteryInfo info) { argument
243 builder.append(info.batteryPercentString, new RelativeSizeSpan(2.6f),
245 if (info.remainingLabel != null) {
251 builder.append(info.remainingLabel);
255 info.bindHistory((UsageView) mCurrentView.findViewById(R.id.battery_usage));
/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...]
H A DKeyboardShortcuts.java599 KeyboardShortcutInfo info = group.getItems().get(j);
600 List<StringDrawableContainer> shortcutKeys = getHumanReadableShortcutKeys(info);
609 if (info.getIcon() != null) {
612 shortcutIcon.setImageIcon(info.getIcon());
618 shortcutKeyword.setText(info.getLabel());
619 if (info.getIcon() != null) {
672 private List<StringDrawableContainer> getHumanReadableShortcutKeys(KeyboardShortcutInfo info) { argument
673 List<StringDrawableContainer> shortcutKeys = getHumanReadableModifiers(info);
679 if (info.getBaseCharacter() > Character.MIN_VALUE) {
680 shortcutKeyString = String.valueOf(info
708 getHumanReadableModifiers(KeyboardShortcutInfo info) argument
738 onInitializeAccessibilityNodeInfo(View host, AccessibilityNodeInfo info) argument
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DLockIcon.java200 public void onInitializeAccessibilityNodeInfo(AccessibilityNodeInfo info) { argument
201 super.onInitializeAccessibilityNodeInfo(info);
204 info.setClassName(LockIcon.class.getName());
209 info.addAction(unlock);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DKeyButtonView.java143 public void onInitializeAccessibilityNodeInfo(AccessibilityNodeInfo info) { argument
144 super.onInitializeAccessibilityNodeInfo(info);
146 info.addAction(new AccessibilityNodeInfo.AccessibilityAction(ACTION_CLICK, null));
148 info.addAction(
/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
H A DUtil.java84 public static String playbackInfoToString(PlaybackInfo info) { argument
85 if (info == null) return null;
86 final String type = playbackInfoTypeToString(info.getPlaybackType());
87 final String vc = volumeProviderControlToString(info.getVolumeControl());
89 info.getCurrentVolume(), info.getMaxVolume(), type, vc, info.getAudioAttributes());
/frameworks/base/packages/WallpaperBackup/src/com/android/wallpaperbackup/
H A DWallpaperBackupAgent.java67 static final String INFO_STAGE = "wallpaper-info-stage";
259 private void restoreFromStage(File stage, File info, String hintTag, int which) argument
262 // Parse the restored info file to find the crop hint. Note that this currently
263 // relies on a priori knowledge of the wallpaper info file schema.
264 Rect cropHint = parseCropHint(info, hintTag);
297 // Whoops; can't process the info file at all. Report failure.
326 // Whoops; can't process the info file at all. Report failure.
342 final PackageInfo info = pm.getPackageInfo(comp.getPackageName(),
344 return (info != null);
/frameworks/base/services/core/java/com/android/server/
H A DPinnerService.java171 private boolean isResolverActivity(ActivityInfo info) { argument
172 return ResolverActivity.class.getName().equals(info.name);
/frameworks/base/services/core/java/com/android/server/am/
H A DContentProviderRecord.java37 public final ProviderInfo info; field in class:ContentProviderRecord
60 info = _info;
70 info = cpr.info;
79 ContentProviderHolder holder = new ContentProviderHolder(info);
87 return (info.multiprocess || info.processName.equals(app.processName))
88 && uid == app.info.uid;
149 pw.print(info.applicationInfo.packageName);
150 pw.print(" process="); pw.println(info
[all...]
/frameworks/base/services/core/java/com/android/server/display/
H A DLogicalDisplay.java114 * @return The device info, which should be treated as immutable by the caller.
115 * The logical display should allocate a new display info object whenever
149 * @param info The logical display information, may be null.
151 public boolean setDisplayInfoOverrideFromWindowManagerLocked(DisplayInfo info) { argument
152 if (info != null) {
154 mOverrideDisplayInfo = new DisplayInfo(info);
158 if (!mOverrideDisplayInfo.equals(info)) {
159 mOverrideDisplayInfo.copyFrom(info);
292 // Only grab the display info now as it may have been changed based on the requests above.
/frameworks/base/services/core/java/com/android/server/net/
H A DLockdownVpnTracker.java316 public void onVpnStateChanged(NetworkInfo info) { argument
317 if (info.getDetailedState() == DetailedState.FAILED) {
325 public void augmentNetworkInfo(NetworkInfo info) { argument
326 if (info.isConnected()) {
328 info.setDetailedState(vpnInfo.getDetailedState(), vpnInfo.getReason(), null);
/frameworks/base/services/core/java/com/android/server/tv/
H A DTvInputHal.java50 void onDeviceAvailable(TvInputHardwareInfo info, TvStreamConfig[] configs); argument
132 private void deviceAvailableFromNative(TvInputHardwareInfo info) { argument
134 Slog.d(TAG, "deviceAvailableFromNative: info = " + info);
136 mHandler.obtainMessage(EVENT_DEVICE_AVAILABLE, info).sendToTarget();
161 TvInputHardwareInfo info = (TvInputHardwareInfo)msg.obj;
163 retrieveStreamConfigsLocked(info.getDeviceId());
165 Slog.d(TAG, "EVENT_DEVICE_AVAILABLE: info = " + info);
167 configs = mStreamConfigs.get(info
[all...]
/frameworks/base/test-runner/src/android/test/mock/
H A DMockContentProvider.java228 public void attachInfo(Context context, ProviderInfo info) { argument
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DInputPort.java275 InputPort(Filter filter, String name, Signature.PortInfo info) { argument
278 mInfo = info;
/frameworks/compile/libbcc/bcinfo/tools/
H A Dmain.cpp78 // Turn off verbose so that we only generate the .info file.
113 static void dumpReduceInfo(FILE *info, const char *Kind, const char *Name) { argument
115 fprintf(info, " %s(%s)\n", Kind, Name);
123 FILE *info = fopen(infoFile.c_str(), "w"); local
124 if (!info) {
125 fprintf(stderr, "Could not open info file %s\n", infoFile.c_str());
129 fprintf(info, "exportVarCount: %zu\n", ME->getExportVarCount());
132 fprintf(info, "%s\n", varNameList[i]);
135 fprintf(info, "exportFuncCount: %zu\n", ME->getExportFuncCount());
138 fprintf(info, "
[all...]
/frameworks/compile/mclinker/lib/LD/
H A DGNUArchiveReader.cpp333 const ResolveInfo* info = m_Module.getNamePool().findInfo(pSymName); local
334 if (info != NULL) {
335 if (!info->isUndef())
337 if (info->isWeak())
H A DGarbageCollection.cpp210 ResolveInfo* info = info_it.getEntry(); local
211 if (!info->isDefine() || info->isLocal() ||
212 info->shouldForceLocal(m_Config))
214 LDSymbol* sym = info->outSymbol();
245 ResolveInfo* info = info_it.getEntry(); local
246 if (!info->isDefine() || info->isLocal())
249 if (!info->isInDyn())
252 LDSymbol* sym = info
275 ResolveInfo* info = sym->resolveInfo(); local
[all...]
H A DResolveInfo.cpp237 ResolveInfo* info = local
239 if (info == NULL)
242 new (info) ResolveInfo(); // call constructor at the `result` address.
243 std::memcpy(info->m_Name, pKey.data(), pKey.size());
244 info->m_Name[pKey.size()] = '\0';
245 info->m_BitField &= ~ResolveInfo::RESOLVE_MASK;
246 info->m_BitField |= (pKey.size() << ResolveInfo::NAME_LENGTH_OFFSET);
247 return info;
/frameworks/native/cmds/flatland/
H A DGLHelper.cpp232 DisplayInfo info; local
233 status_t err = mSurfaceComposerClient->getDisplayInfo(dpy, &info);
239 float scaleX = float(info.w) / float(w);
240 float scaleY = float(info.h) / float(h);
/frameworks/native/services/sensorservice/
H A DSensorDevice.cpp101 const Info& info = mActivationCount.valueFor(list[i].handle); local
102 if (info.batchParams.isEmpty()) continue;
104 info.batchParams.size());
107 for (size_t j = 0; j < info.batchParams.size(); j++) {
108 const BatchParams& params = info.batchParams.valueAt(j);
110 j < info.batchParams.size() - 1 ? ", " : "");
112 result.appendFormat("}, selected = %.1f ms; ", info.bestBatchParams.batchDelay / 1e6f);
115 for (size_t j = 0; j < info.batchParams.size(); j++) {
116 BatchParams params = info.batchParams.valueAt(j);
118 j < info
352 Info& info = mActivationCount.editValueAt(i); local
385 const Info& info = mActivationCount.valueAt(i); local
[all...]
/frameworks/native/vulkan/tools/
H A Dvkinfo.cpp127 GpuInfo& info) {
131 vkGetPhysicalDeviceProperties(gpu, &info.properties);
132 vkGetPhysicalDeviceMemoryProperties(gpu, &info.memory);
133 vkGetPhysicalDeviceFeatures(gpu, &info.features);
136 info.queue_families.resize(count);
138 info.queue_families.data());
144 info.layers.resize(count);
146 vkEnumerateDeviceLayerProperties(gpu, &count, info.layers.data());
150 info.layer_extensions.resize(info
125 GatherGpuInfo(VkPhysicalDevice gpu, const Options &options, GpuInfo& info) argument
211 GatherInfo(VulkanInfo* info, const Options& options) argument
490 PrintGpuInfo(const GpuInfo& info, const Options& options, size_t indent) argument
569 PrintInfo(const VulkanInfo& info, const Options& options) argument
[all...]

Completed in 3798 milliseconds

1234567891011>>