Searched refs:info (Results 26 - 50 of 490) sorted by relevance

1234567891011>>

/frameworks/av/media/libstagefright/codecs/mp3dec/src/
H A Dpvmp3_mpeg2_get_scale_factors.h93 mp3Header *info,
H A Dpvmp3_reorder.h91 mp3Header *info,
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityNodeInfoCache.java30 * accessibility id to an info. The cache allows storing of
120 * @param accessibilityNodeId The info accessibility node id.
126 AccessibilityNodeInfo info = mCacheImpl.get(accessibilityNodeId);
127 if (info != null) {
129 // will wipe the data of the cached info.
130 info = AccessibilityNodeInfo.obtain(info);
133 Log.i(LOG_TAG, "get(" + accessibilityNodeId + ") = " + info);
135 return info;
145 * @param info Th
147 add(AccessibilityNodeInfo info) argument
[all...]
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/view/
H A DWindowManagerImpl.java32 DisplayInfo info = new DisplayInfo();
33 info.logicalHeight = mMetrics.heightPixels;
34 info.logicalWidth = mMetrics.widthPixels;
35 mDisplay = new Display(null, Display.DEFAULT_DISPLAY, info, null);
/frameworks/base/wifi/java/android/net/wifi/p2p/nsd/
H A DWifiP2pUpnpServiceInfo.java77 ArrayList<String> info = new ArrayList<String>();
79 info.add(createSupplicantQuery(uuid, null));
80 info.add(createSupplicantQuery(uuid, "upnp:rootdevice"));
81 info.add(createSupplicantQuery(uuid, device));
84 info.add(createSupplicantQuery(uuid, service));
88 return new WifiP2pUpnpServiceInfo(info);
/frameworks/compile/mclinker/lib/CodeGen/
H A DSectLinker.cpp72 MCLDInfo &info = m_pOption->info(); local
78 initializeInputOutput(info);
80 m_pLDDriver = new MCLDDriver(info, *m_pLDBackend, *memAreaFactory());
87 const MCLDInfo &info = m_pOption->info(); local
100 if (info.options().trace()) {
102 mcld::outs() << "** name\ttype\tpath\tsize (" << info.inputs().size() << ")\n";
103 InputTree::const_dfs_iterator input, inEnd = info.inputs().dfs_end();
104 for (input=info
233 MCLDInfo &info = m_pOption->info(); local
[all...]
/frameworks/base/tests/SmokeTest/tests/src/com/android/smoketest/
H A DProcessErrorsTest.java222 final String errPkg = err.info.processName;
260 newList.add(err.info);
308 public final ProcessErrorStateInfo info; field in class:ProcessErrorsTest.ProcessError
311 info = newInfo;
321 for (ProcessErrorStateInfo info : in) {
322 out.add(new ProcessError(info));
343 return (info.condition == peOther.info.condition)
344 && strEquals(info.longMsg, peOther.info
[all...]
/frameworks/base/tests/DumpRenderTree2/assets/
H A Drun_apache2.py37 logging.info("illegal argument: " + run_cmd)
38 logging.info("Usage: python run_apache2.py start|stop|restart")
106 logging.info("Will " + run_cmd + " apache2 server.")
111 logging.info("First will stop...")
114 logging.info("Failed to stop Apache2")
116 logging.info("Stopped. Will start now...")
124 logging.info("Failed to start Apache2")
127 logging.info("Successfully started")
135 logging.info(out)
139 logging.info("!! ERROR
[all...]
H A Drun_layout_tests.py44 logging.info("Running the tests...")
48 logging.info("Failed to start tests:\n%s", stderrdata)
51 logging.info("Failed to run the tests. Is DumpRenderTree2 installed on the device?")
54 logging.info("DumpRenderTree2 failed to run correctly:\n%s", stdoutdata)
57 logging.info("Downloading the summaries...")
72 logging.info("All done.\n")
75 logging.info("")
/frameworks/compile/libbcc/lib/Renderscript/
H A DRSCompiler.cpp36 const RSInfo *info = script.getInfo(); local
50 const RSInfo::ExportVarNameListTy &export_vars = info->getExportVarNames();
51 const RSInfo::ExportFuncNameListTy &export_funcs = info->getExportFuncNames();
69 info->getExportForeachFuncs();
97 const RSInfo *info = script.getInfo(); local
100 if (info == NULL) {
107 rs_passes.add(createRSForEachExpandPass(info->getExportForeachFuncs(),
/frameworks/compile/mclinker/unittests/
H A DNamePoolTest.cpp89 EXPECT_NE(name, result1.info->name());
90 EXPECT_STREQ(name, result1.info->name());
91 EXPECT_EQ(isDyn, result1.info->isDyn());
92 EXPECT_EQ(type, result1.info->type());
93 EXPECT_EQ(desc, result1.info->desc());
94 EXPECT_EQ(binding, result1.info->binding());
95 EXPECT_EQ(size, result1.info->size());
96 EXPECT_EQ(other, result1.info->visibility());
109 EXPECT_NE(name, result1.info->name());
110 EXPECT_STREQ(name, result1.info
[all...]
/frameworks/compile/mclinker/lib/MC/
H A DMCLinker.cpp79 resolved_result.info = m_LDInfo.getNamePool().createSymbol(pName,
100 assert(NULL != resolved_result.info);
107 input_sym->setResolveInfo(*resolved_result.info);
113 LDSymbol* output_sym = resolved_result.info->outSymbol();
124 output_sym->setResolveInfo(*resolved_result.info);
125 resolved_result.info->setSymPtr(output_sym);
146 if (shouldForceLocal(*resolved_result.info))
155 !shouldForceLocal(*resolved_result.info)) {
156 // If the old info and the new info ar
249 ResolveInfo* info = m_LDInfo.getNamePool().findInfo(pName); local
319 ResolveInfo* info = m_LDInfo.getNamePool().findInfo(pName); local
416 ResolveInfo* info = m_LDInfo.getNamePool().findInfo(pName); local
[all...]
/frameworks/base/core/java/android/net/
H A DDhcpInfo.java92 DhcpInfo info = new DhcpInfo();
93 info.ipAddress = in.readInt();
94 info.gateway = in.readInt();
95 info.netmask = in.readInt();
96 info.dns1 = in.readInt();
97 info.dns2 = in.readInt();
98 info.serverAddress = in.readInt();
99 info.leaseDuration = in.readInt();
100 return info;
H A DDhcpInfoInternal.java76 DhcpInfo info = new DhcpInfo();
77 info.ipAddress = convertToInt(ipAddress);
80 info.gateway = convertToInt(route.getGateway().getHostAddress());
86 info.netmask = NetworkUtils.prefixLengthToNetmaskInt(prefixLength);
88 info.dns1 = convertToInt(dns1);
89 info.dns2 = convertToInt(dns2);
90 info.serverAddress = convertToInt(serverAddress);
91 info.leaseDuration = leaseDuration;
92 return info;
H A DCaptivePortalTracker.java114 NetworkInfo info = intent.getParcelableExtra(
116 sendMessage(obtainMessage(CMD_CONNECTIVITY_CHANGE, info));
128 public void detectCaptivePortal(NetworkInfo info) { argument
129 sendMessage(obtainMessage(CMD_DETECT_PORTAL, info));
143 NetworkInfo info = (NetworkInfo) message.obj;
146 notifyPortalCheckComplete(info);
172 NetworkInfo info;
175 info = (NetworkInfo) message.obj;
176 if (info.isConnected() && isActiveNetwork(info)) {
253 notifyPortalCheckComplete(NetworkInfo info) argument
265 isActiveNetwork(NetworkInfo info) argument
[all...]
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DCallerInfo.java158 CallerInfo info = new CallerInfo();
159 info.photoResource = 0;
160 info.phoneLabel = null;
161 info.numberType = 0;
162 info.numberLabel = null;
163 info.cachedPhoto = null;
164 info.isCachedPhotoCurrent = false;
165 info.contactExists = false;
180 info.name = cursor.getString(columnIndex);
186 info
[all...]
/frameworks/base/core/java/android/appwidget/
H A DAppWidgetManager.java549 for (AppWidgetProviderInfo info : providers) {
551 info.minWidth =
552 TypedValue.complexToDimensionPixelSize(info.minWidth, mDisplayMetrics);
553 info.minHeight =
554 TypedValue.complexToDimensionPixelSize(info.minHeight, mDisplayMetrics);
555 info.minResizeWidth =
556 TypedValue.complexToDimensionPixelSize(info.minResizeWidth, mDisplayMetrics);
557 info.minResizeHeight =
558 TypedValue.complexToDimensionPixelSize(info.minResizeHeight, mDisplayMetrics);
568 * Get the available info abou
[all...]
/frameworks/base/test-runner/src/android/test/
H A DClassPathPackageInfo.java46 Set<ClassPathPackageInfo> info = Sets.newHashSet();
48 info.add(source.getPackageInfo(name));
50 return info;
61 for (ClassPathPackageInfo info : getSubpackages()) {
62 info.addTopLevelClassesTo(set);
/frameworks/base/wifi/java/android/net/wifi/p2p/
H A DWifiP2pInfo.java83 WifiP2pInfo info = new WifiP2pInfo();
84 info.groupFormed = (in.readByte() == 1);
85 info.isGroupOwner = (in.readByte() == 1);
88 info.groupOwnerAddress = InetAddress.getByAddress(in.createByteArray());
91 return info;
/frameworks/support/v4/java/android/support/v4/net/
H A DConnectivityManagerCompat.java40 final NetworkInfo info = cm.getActiveNetworkInfo();
41 if (info == null) {
46 final int type = info.getType();
114 final NetworkInfo info = intent.getParcelableExtra(ConnectivityManager.EXTRA_NETWORK_INFO);
115 return cm.getNetworkInfo(info.getType());
/frameworks/base/core/java/com/android/internal/util/
H A DFileRotator.java139 final FileInfo info = new FileInfo(mPrefix);
141 if (info.parse(name)) {
154 final FileInfo info = new FileInfo(mPrefix);
156 if (info.parse(name)) {
218 final FileInfo info = new FileInfo(mPrefix);
220 if (!info.parse(name)) continue;
287 final FileInfo info = new FileInfo(mPrefix);
289 if (!info.parse(name)) continue;
292 if (info.startMillis <= matchEndMillis && matchStartMillis <= info
[all...]
/frameworks/base/core/java/android/app/
H A DLoaderManager.java461 LoaderInfo info = mInactiveLoaders.get(mId);
462 if (info != null && info != this) {
463 info.mDeliveredData = false;
464 info.destroy();
545 LoaderInfo info = new LoaderInfo(id, args, (LoaderManager.LoaderCallbacks<Object>)callback);
547 info.mLoader = (Loader<Object>)loader;
548 return info;
555 LoaderInfo info = createLoader(id, args, callback);
556 installLoader(info);
563 installLoader(LoaderInfo info) argument
[all...]
/frameworks/support/v4/java/android/support/v4/app/
H A DLoaderManager.java405 LoaderInfo info = mInactiveLoaders.get(mId);
406 if (info != null && info != this) {
407 info.mDeliveredData = false;
408 info.destroy();
489 LoaderInfo info = new LoaderInfo(id, args, (LoaderManager.LoaderCallbacks<Object>)callback);
491 info.mLoader = (Loader<Object>)loader;
492 return info;
499 LoaderInfo info = createLoader(id, args, callback);
500 installLoader(info);
507 installLoader(LoaderInfo info) argument
[all...]
/frameworks/native/services/sensorservice/
H A DSensorDevice.cpp79 const Info& info = mActivationCount.valueFor(list[i].handle); local
82 info.rates.size());
84 for (size_t j=0 ; j<info.rates.size() ; j++) {
86 info.rates.valueAt(j) / 1e6f,
87 j<info.rates.size()-1 ? ", " : "");
90 snprintf(buffer, SIZE, " }, selected=%4.1f ms\n", info.delay / 1e6f);
120 Info& info( mActivationCount.editValueFor(handle) );
125 ident, handle, enabled, info.rates.size());
130 info.rates.indexOfKey(ident));
132 if (info
[all...]
/frameworks/base/core/java/android/widget/
H A DButton.java117 public void onInitializeAccessibilityNodeInfo(AccessibilityNodeInfo info) { argument
118 super.onInitializeAccessibilityNodeInfo(info);
119 info.setClassName(Button.class.getName());

Completed in 1779 milliseconds

1234567891011>>