/prebuilts/ndk/9/platforms/android-8/arch-arm/usr/include/linux/nfsd/ |
xdr.h | 134 struct nfsd_linkargs link; member in union:nfsd_xdrstore
|
/prebuilts/ndk/9/platforms/android-9/arch-arm/usr/include/linux/nfsd/ |
xdr.h | 134 struct nfsd_linkargs link; member in union:nfsd_xdrstore
|
/prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/linux/nfsd/ |
xdr.h | 134 struct nfsd_linkargs link; member in union:nfsd_xdrstore
|
/prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/linux/nfsd/ |
xdr.h | 134 struct nfsd_linkargs link; member in union:nfsd_xdrstore
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/ |
msvccompiler.py | 258 self.linker = "link.exe" 272 self.linker = self.find_exe("link.exe") 464 def link (self, member in class:MSVCCompiler 541 # link ()
|
ccompiler.py | 29 instance can be used for all the compile/link steps in building a 31 link steps -- include directories, macros to define, libraries to link 34 attributes may be varied on a per-compilation or per-link basis. 62 # dirs, e.g. "-Ldir1 -lfoo -Ldir2 -lfoo" to link against 111 # 'libraries': a list of libraries to include in any link 123 # named library files) to include on any link 255 The linker will be instructed to link against libraries in the 258 names; the linker will be instructed to link against libraries as 304 compilers") to be included in every link driven by this compile 617 def link(self, target_desc, objects, output_filename, output_dir=None, member in class:CCompiler [all...] |
msvc9compiler.py | 365 self.linker = "link.exe" 397 self.linker = self.find_exe("link.exe") 578 def link(self, member in class:MSVCCompiler 659 # manifest. Maybe we should link to a temp file? OTOH, that
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/ |
msvccompiler.py | 258 self.linker = "link.exe" 272 self.linker = self.find_exe("link.exe") 464 def link (self, member in class:MSVCCompiler 541 # link ()
|
ccompiler.py | 29 instance can be used for all the compile/link steps in building a 31 link steps -- include directories, macros to define, libraries to link 34 attributes may be varied on a per-compilation or per-link basis. 62 # dirs, e.g. "-Ldir1 -lfoo -Ldir2 -lfoo" to link against 111 # 'libraries': a list of libraries to include in any link 123 # named library files) to include on any link 255 The linker will be instructed to link against libraries in the 258 names; the linker will be instructed to link against libraries as 304 compilers") to be included in every link driven by this compile 617 def link(self, target_desc, objects, output_filename, output_dir=None, member in class:CCompiler [all...] |
/system/core/fastboot/ |
usb_linux.c | 186 char link[256]; local 191 link_len = readlink(cdev, link, sizeof(link) - 1); 193 link[link_len] = '\0'; 194 slash = strrchr(link, '/');
|
/frameworks/base/core/java/android/net/ |
LinkProperties.java | 35 * 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 and all the links stacked above it 293 mStackedLinks.put(link.getInterfaceName(), link); local [all...] |
/bionic/libc/tools/zoneinfo/ |
ZoneCompactor.java | 15 // Link <toName> <fromName> 117 if (s.startsWith("Link")) { 124 String link = links.get(s); local 125 if (link == null) {
|
/external/bison/darwin-lib/ |
unistd.h | 1344 # undef link macro [all...] |
/external/bison/linux-lib/ |
unistd.h | 1344 # undef link macro [all...] |
/external/chromium/chrome/browser/ |
jumplist_win.cc | 178 base::win::ScopedComPtr<IShellLink> link; local 179 HRESULT result = link.CreateInstance(CLSID_ShellLink, NULL, 187 result = link->SetPath(application.c_str()); 200 result = link->SetArguments(arguments.c_str()); 208 link->SetIconLocation(item->icon().c_str(), item->index()); 224 result = link.QueryInterface(property_store.Receive()); 242 return collection->AddObject(link); 309 scoped_refptr<ShellLinkItem> link(*item); 310 AddShellLink(collection, application, switches, link); 654 scoped_refptr<ShellLinkItem> link(new ShellLinkItem) [all...] |
/external/chromium_org/chrome/browser/ui/views/translate/ |
translate_bubble_view.cc | 33 #include "ui/views/controls/link.h" 49 views::Link* CreateLink(views::LinkListener* listener, 52 views::Link* link = new views::Link( local 54 link->set_listener(listener); 55 link->set_id(id); 56 return link; 300 void TranslateBubbleView::LinkClicked(views::Link* source, int event_flags) {
|
/external/chromium_org/google_apis/drive/ |
gdata_wapi_requests.cc | 107 // Extracts the open link url from the JSON Feed. Used by AuthorizeApp(). 126 // Look for the link to open the file with the app with |app_id|. 127 const ScopedVector<Link>& resource_links = resource_entry->links(); 130 const Link& link = *resource_links[i]; local 131 if (link.type() == Link::LINK_OPEN_WITH && link.app_id() == app_id) { 132 open_link = link.href();
|
/external/chromium_org/remoting/android/java/src/org/chromium/chromoting/ |
Chromoting.java | 232 URLConnection link = local 234 link.addRequestProperty("client_id", JniInterface.nativeGetClientId()); 235 link.addRequestProperty("client_secret", JniInterface.nativeGetClientSecret()); 236 link.setRequestProperty("Authorization", "OAuth " + authToken); 240 Scanner incoming = new Scanner(link.getInputStream());
|
/external/chromium_org/third_party/WebKit/Source/heap/ |
Heap.h | 179 void link(LargeHeapObject<Header>** previousNext) function in class:WebCore::LargeHeapObject
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/ |
nv50_ir_ssa.cpp | 47 inline void link(int, int); 128 void DominatorTree::link(int v, int w) function in class:nv50_ir::DominatorTree 153 link(p, w);
|
/external/iproute2/ip/ |
iplink.c | 2 * iplink.c "ip link". 46 fprintf(stderr, "Usage: ip link add [link DEV] [ name ] NAME\n"); 52 fprintf(stderr, " ip link delete DEV type TYPE [ ARGS ]\n"); 54 fprintf(stderr, " ip link set { dev DEVICE | group DEVGROUP } [ { up | down } ]\n"); 56 fprintf(stderr, "Usage: ip link set DEVICE [ { up | down } ]\n"); 80 fprintf(stderr, " ip link show [ DEVICE | group GROUP ]\n"); 274 char **name, char **type, char **link, char **dev, int *group) 296 } else if (matches(*argv, "link") == 0) { 298 *link = *argv 469 char *link = NULL; local [all...] |
/external/jdiff/src/jdiff/ |
APIComparator.java | 215 String link = "<a href=\"pkg_" + oldPkg.name_ + HTMLReportGenerator.reportFileExt + "\" class=\"hiddenlink\">"; local 217 String title = link + "Package <b>" + oldPkg.name_ + "</b></a>"; 280 String link = "<a href=\"" + fqName + HTMLReportGenerator.reportFileExt + "\" class=\"hiddenlink\">"; local 282 String title = link + "Class <b>" + classDiff.name_ + "</b></a>"; [all...] |
/external/libppp/src/ |
physical.h | 80 struct link link; member in struct:physical 82 int type; /* What sort of PHYS_* link are we ? */ 101 pid_t session_owner; /* HUP this when closing the link */ 122 ((l)->type == PHYSICAL_LINK ? field2phys(l, link) : NULL)
|
/external/mesa3d/src/gallium/drivers/nv50/codegen/ |
nv50_ir_ssa.cpp | 47 inline void link(int, int); 128 void DominatorTree::link(int v, int w) function in class:nv50_ir::DominatorTree 153 link(p, w);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
os.py | 81 from _emx_link import link namespace
|