HomeSort by relevance Sort by last modified time
    Searched defs:link (Results 126 - 150 of 167) sorted by null

1 2 3 4 56 7

  /frameworks/base/services/java/com/android/server/
MountService.java 211 public void link() throws RemoteException { method in class:MountService.ObbState
    [all...]
  /ndk/build/core/
definitions.mk 150 # Function : link-whole-archives
153 # Usage : $(call link-whole-archives,<libraries>)
160 link-whole-archives = $(if $(strip $1),$(call link-whole-archive-flags,$1))
161 link-whole-archive-flags = -Wl,--whole-archive $(call host-path,$1) -Wl,--no-whole-archive
    [all...]
  /bionic/libc/kernel/common/linux/
nfs_xdr.h 525 int (*link) (struct inode *, struct inode *, struct qstr *); member in struct:nfs_rpc_ops
  /development/ndk/platforms/android-3/include/linux/
nfs_xdr.h 525 int (*link) (struct inode *, struct inode *, struct qstr *); member in struct:nfs_rpc_ops
  /external/bzip2/
bzip2.c 1697 struct zzzz *link; member in struct:zzzz
    [all...]
  /external/chromium/third_party/icu/source/common/
triedict.cpp 63 TernaryNode *low; // Less-than link
64 TernaryNode *equal; // Equal link
65 TernaryNode *high; // Greater-than link
471 kParentEndsWord = 0x2000, // The node whose equal link points to this ends a word
486 uint16_t equal; // Equal link node index
499 uint16_t equal; // Equal link node index
592 * calculates an equal link node ID of a horizontal node
593 * @hnode The horizontal node containing the equal link
608 * calculates an equal link node ID of a horizontal node
609 * @hnode The horizontal node containing the equal link
1242 BuildCompactTrieValueNode *link = (BuildCompactTrieValueNode *) values->get(key); local
1272 BuildCompactTrieNode *link = NULL; local
    [all...]
  /external/dbus/bus/
config-parser.c 296 DBusList *link; local
300 for (link = *service_dirs; link; link = _dbus_list_get_next_link(service_dirs, link))
304 link_dir = (const char *)link->data;
343 DBusList *link; local
383 while ((link = _dbus_list_pop_first_link (&included->listen_on)))
384 _dbus_list_append_link (&parser->listen_on, link);
386 while ((link = _dbus_list_pop_first_link (&included->mechanisms))
808 DBusList *link; local
3080 DBusList *link; local
    [all...]
  /external/dbus/dbus/
dbus-connection.c 222 DBusList *queue_link; /**< Preallocated link in the queue */
223 DBusList *counter_link; /**< Preallocated link in the resource counter */
400 DBusList *link; local
402 link = _dbus_list_alloc_link (message);
403 if (link == NULL)
407 _dbus_connection_queue_received_message_link (connection, link);
441 * Adds a message-containing list link to the incoming message queue,
442 * taking ownership of the link and the message's current refcount.
446 * @param link the message link to queue
590 DBusList *link; local
2130 DBusList *link; local
2157 DBusList *link; local
2559 DBusList *link; local
3673 DBusList *link; local
3707 DBusList *link; local
3895 DBusList *link; local
4239 DBusList *link, *filter_list_copy, *message_link; local
5102 DBusList *link; local
    [all...]
dbus-marshal-recursive-util.c 2879 DBusList *link; local
2928 DBusList *link; local
2997 DBusList *link; local
3073 DBusList *link; local
3137 DBusList *link; local
3547 DBusList *link; local
    [all...]
dbus-message.c 184 * The link contains a counter with its refcount already
186 * Ownership of link and counter refcount is passed to
190 * @param link link with counter as data
194 DBusList *link)
214 _dbus_list_append_link (&message->size_counters, link);
216 _dbus_counter_adjust (link->data, message->size_counter_delta);
232 DBusList *link; local
234 link = _dbus_list_alloc_link (counter);
235 if (link == NULL
257 DBusList *link; local
    [all...]
  /external/dbus/test/
decode-gcov.c 885 DBusList *link; local
918 link = _dbus_list_get_first_link (functions);
919 if (link == NULL)
923 while (n_functions < claimed_n_functions && link != NULL)
930 current_func = link->data;
1003 link = _dbus_list_get_next_link (functions, link);
1006 if (link == NULL && n_functions < claimed_n_functions)
1027 DBusList *link; local
1044 link = _dbus_list_get_first_link (functions)
1258 DBusList *link; local
1382 DBusList *link; local
1669 DBusList *link; local
1784 DBusList *link; local
1938 DBusList *link; local
1958 DBusList *link; local
1980 DBusList *link; local
2104 DBusList *link; local
2233 DBusList *link; local
2274 DBusList *link; local
2335 DBusList *link; local
2531 DBusList *link; local
    [all...]
  /external/freetype/src/autofit/
aflatin2.c 95 AF_Segment seg, limit, link; local
112 link = seg->link;
115 if ( link && link->link == seg && link > seg )
120 dist = seg->pos - link->pos;
950 /* we must never link them to anything */
985 seg1->link = seg2
    [all...]
  /external/kernel-headers/original/linux/
pnp.h 314 struct pnp_driver link; member in struct:pnp_card_driver
317 #define to_pnp_card_driver(drv) container_of(drv, struct pnp_card_driver, link)
339 struct device dev; /* link to driver model */
tty.h 190 struct tty_struct *link; member in struct:tty_struct
  /external/v8/src/mips/
assembler-mips.cc 302 // The link chain is terminated by a negative code position (must be aligned).
391 next(L); // call next before overwriting link with target at fixup_pos
408 int link = L->pos(); local
410 fixup_pos = link;
411 link = target_at(fixup_pos);
412 } while (link > 0);
413 ASSERT(link == kEndOfChain);
432 int link = target_at(L->pos()); local
433 if (link > 0) {
434 L->link_to(link);
    [all...]
  /external/webkit/WebCore/bindings/objc/
PublicDOMInterfaces.h 403 @property(copy) NSString *link; variable
    [all...]
  /external/webkit/WebKit/qt/tests/qwebframe/
tst_qwebframe.cpp 2525 QWebElement link = result.linkElement(); local
    [all...]
  /hardware/broadcom/wlan/bcm4329/src/dhd/sys/
dhd_common.c 13 * permission to link this software with independent modules, and to copy and
521 bool group = FALSE, flush_txq = FALSE, link = FALSE; local
542 {WLC_E_LINK, "LINK"},
608 link = TRUE;
697 DHD_EVENT(("MACEVENT: %s %s\n", event_name, link?"UP":"DOWN"));
    [all...]
  /libcore/luni/src/main/java/java/util/concurrent/
ConcurrentSkipListMap.java 28 * A scalable concurrent {@link ConcurrentNavigableMap} implementation.
30 * ordering} of its keys, or by a {@link Comparator} provided at map
41 * the creation of the iterator. They do <em>not</em> throw {@link
64 * <em>optional</em> methods of the {@link Map} and {@link Iterator}
130 * link. This requires less space and supports faster
212 * using CAS to link and unlink. Races are allowed in index-list
213 * operations that can (rarely) fail to link in a new index node
560 * indexed is known to be deleted, it doesn't try to link in.
565 final boolean link(Index<K,V> succ, Index<K,V> newSucc) method in class:ConcurrentSkipListMap.Index
    [all...]
  /prebuilt/linux-x86/toolchain/i686-unknown-linux-gnu-4.2.1/include/
bfdlink.h 1 /* bfdlink.h -- header file for BFD link routines
25 /* Which symbols to strip during a link. */
34 /* Which local symbols to discard during a link. This is irrelevant
55 /* These are the possible types of an entry in the BFD link hash
66 bfd_link_hash_indirect, /* Symbol is an indirect link. */
103 the link hash table itself. As symbols are defined, they need
130 struct bfd_link_hash_entry *link; /* Real symbol. */
156 /* This is the link hash table. It is a derived class of
173 /* The type of the link hash table. */
177 /* Look up an entry in a link hash table. If FOLLOW is TRUE, thi
129 struct bfd_link_hash_entry *link; \/* Real symbol. *\/ member in struct:bfd_link_hash_entry::__anon14871::__anon14874
    [all...]
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/linux/
nfs_xdr.h 525 int (*link) (struct inode *, struct inode *, struct qstr *); member in struct:nfs_rpc_ops
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/linux/
nfs_xdr.h 525 int (*link) (struct inode *, struct inode *, struct qstr *); member in struct:nfs_rpc_ops
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/linux/
nfs_xdr.h 525 int (*link) (struct inode *, struct inode *, struct qstr *); member in struct:nfs_rpc_ops
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/linux/
nfs_xdr.h 525 int (*link) (struct inode *, struct inode *, struct qstr *); member in struct:nfs_rpc_ops
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/linux/
nfs_xdr.h 525 int (*link) (struct inode *, struct inode *, struct qstr *); member in struct:nfs_rpc_ops

Completed in 1593 milliseconds

1 2 3 4 56 7