Searched defs:link (Results 1 - 15 of 15) sorted by relevance

/frameworks/base/samples/training/network-usage/src/com/example/android/networkusage/
H A DStackOverflowXmlParser.java69 // It includes the data members "title," "link," and "summary."
72 public final String link; field in class:StackOverflowXmlParser.Entry
75 private Entry(String title, String summary, String link) { argument
78 this.link = link;
82 // Parses the contents of an entry. If it encounters a title, summary, or link tag, hands them
89 String link = null;
99 } else if (name.equals("link")) {
100 link = readLink(parser);
105 return new Entry(title, summary, link);
[all...]
/frameworks/compile/mclinker/tools/mcld/lib/Core/
H A DLinker.cpp163 enum Linker::ErrorCode Linker::link() { function in class:Linker
164 mLinker->link(*mModule, *mBuilder);
/frameworks/base/services/tests/servicestests/src/com/android/server/
H A DConnectivityServiceTest.java56 * Tests for {@link ConnectivityService}.
93 public LinkProperties link; field in class:ConnectivityServiceTest.MockNetwork
98 link = new LinkProperties();
104 doReturn(new LinkProperties(link)).when(tracker).getLinkProperties();
156 mMobile.link.setInterfaceName(MOBILE_IFACE);
157 mMobile.link.addRoute(MOBILE_ROUTE_V4);
158 mMobile.link.addRoute(MOBILE_ROUTE_V6);
177 mMobile.link.setInterfaceName(MOBILE_IFACE);
178 mMobile.link.addRoute(MOBILE_ROUTE_V4);
179 mMobile.link
[all...]
/frameworks/compile/mclinker/lib/Core/
H A DLinker.cpp65 bool Linker::link(Module& pModule, IRBuilder& pBuilder) function in class:Linker
/frameworks/rs/driver/
H A DrsdShaderCache.cpp91 if (!link(rsc)) {
107 bool RsdShaderCache::link(const Context *rsc) { function in class:RsdShaderCache
127 rsdGLCheckError(rsc, "RsdShaderCache::link (hit)");
226 rsdGLCheckError(rsc, "RsdShaderCache::link (miss)");
/frameworks/base/core/java/android/net/
H A DBaseNetworkStateTracker.java29 * network-specific details from {@link ConnectivityManager}. Surfaces events
30 * through the registered {@link Handler} to enable {@link ConnectivityManager}
177 public void addStackedLink(LinkProperties link) { argument
178 mLinkProperties.addStackedLink(link);
182 public void removeStackedLink(LinkProperties link) { argument
183 mLinkProperties.removeStackedLink(link);
H A DDummyDataStateTracker.java156 * Re-enable mobile data connectivity after a {@link #teardown()}.
210 public void addStackedLink(LinkProperties link) { argument
211 mLinkProperties.addStackedLink(link);
215 public void removeStackedLink(LinkProperties link) { argument
216 mLinkProperties.removeStackedLink(link);
H A DNetworkStateTracker.java26 * Interface provides the {@link com.android.server.ConnectivityService}
122 * Get interesting information about this network link
123 * @return a copy of link information, null if not available
141 * Reenable connectivity to a network after a {@link #teardown()}.
180 * persisted internally. Usually used when {@link NetworkPolicy#limitBytes}
230 public void addStackedLink(LinkProperties link); argument
235 public void removeStackedLink(LinkProperties link); argument
H A DEthernetDataTracker.java79 Log.d(TAG, "Interface " + iface + " link " + (up ? "up" : "down"));
121 // we don't get link status indications unless the iface is up - bring it up
262 * Re-enable connectivity to a network after a {@link #teardown()}.
413 public void addStackedLink(LinkProperties link) { argument
414 mLinkProperties.addStackedLink(link);
418 public void removeStackedLink(LinkProperties link) { argument
419 mLinkProperties.removeStackedLink(link);
H A DLinkProperties.java35 * Describes the properties of a network link.
37 * A link represents a connection to a network.
62 // The interface described by the network link.
71 // Stores the properties of links that are "stacked" above this link.
135 * Returns all the addresses on this link.
146 * Returns all the addresses on this link and all the links stacked above it.
160 * Adds a link address if it does not exist, or update it if it does.
175 * Removes a link address.
184 * Returns all the addresses on this link.
191 * Returns all the addresses on this link an
291 addStackedLink(LinkProperties link) argument
308 removeStackedLink(LinkProperties link) argument
[all...]
H A DMobileDataStateTracker.java198 loge("CONNECTED event did not supply link properties.");
206 loge("CONNECTED event did not supply link capabilities.");
335 loge("No link property in LINK_PROPERTIES change event.");
515 * Re-enable mobile data connectivity after a {@link #teardown()}.
670 public void addStackedLink(LinkProperties link) { argument
671 mLinkProperties.addStackedLink(link);
675 public void removeStackedLink(LinkProperties link) { argument
676 mLinkProperties.removeStackedLink(link);
/frameworks/base/wifi/java/android/net/wifi/
H A DWifiStateTracker.java110 * Re-enable connectivity to a network after a {@link #teardown()}.
205 * Return link info
310 public void addStackedLink(LinkProperties link) { argument
311 mLinkProperties.addStackedLink(link);
315 public void removeStackedLink(LinkProperties link) { argument
316 mLinkProperties.removeStackedLink(link);
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothTetheringDataTracker.java156 * Re-enable connectivity to a network after a {@link #teardown()}.
375 public void addStackedLink(LinkProperties link) { argument
376 mLinkProperties.addStackedLink(link);
380 public void removeStackedLink(LinkProperties link) { argument
381 mLinkProperties.removeStackedLink(link);
/frameworks/compile/mclinker/include/mcld/LD/
H A DResolveInfo.h189 ResolveInfo* link() function in class:mcld::ResolveInfo
192 const ResolveInfo* link() const function in class:mcld::ResolveInfo
/frameworks/base/services/java/com/android/server/
H A DMountService.java194 /** When defined, base template for user-specific {@link StorageVolume}. */
201 /** Map from path to {@link StorageVolume} */
244 /** Map from raw paths to {@link ObbState}. */
285 public void link() throws RemoteException { method in class:MountService.ObbState
1282 * Create and add new {@link StorageVolume} for given {@link UserHandle}
1283 * using {@link #mEmulatedTemplate} as template.
1406 Slog.e(TAG, "Failed to link to listener death");
2281 obbState.link();
2284 * The binder died before we could link i
[all...]

Completed in 469 milliseconds