HomeSort by relevance Sort by last modified time
    Searched refs:link (Results 151 - 175 of 1537) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/chromium_org/chrome/browser/resources/local_ntp/
most_visited_util.js 79 * Creates a new most visited link element.
80 * @param {Object} params URL parameters containing styles for the link.
81 * @param {string} href The destination for the link.
82 * @param {string} title The title for the link.
83 * @param {string|undefined} text The text for the link or none.
85 * referrer of this iframe, to ping when the link is clicked. Only works if
90 * @return {HTMLAnchorElement} A new link element.
94 var link = document.createElement('a');
95 link.style.color = styles.color;
96 link.style.fontSize = styles.fontSize + 'px'
    [all...]
  /external/libppp/src/
netgraph.c 65 #include "link.h"
255 log_Printf(LogTIMER, "%s: fdunset(ctrl) %d\n", p->link.name, dev->cs);
364 log_Printf(LogTIMER, "%s(ctrl): fdset(r) %d\n", p->link.name, dev->cs);
497 p->link.name, devp);
504 " [nodetype:nodename]\n", p->link.name);
511 log_Printf(LogDEBUG, "%s: Got hook \"%s\"\n", p->link.name, hook);
515 " hook\n", p->link.name);
520 " pos %d\n", p->link.name, devp - p->link.name - 1);
532 log_Printf(LogDEBUG, "%s: Got node \"%s\"\n", p->link.name, nodetype)
    [all...]
tty.c 64 #include "link.h"
133 "using ``set cd off''\n", p->link.name);
144 log_Printf(LogPHASE, "%s: %s: CD detected\n", p->link.name, p->name.full);
148 p->link.name, p->name.full);
151 p->link.name, p->name.full);
159 p->link.name, p->name.full, dev->carrier_seconds,
167 log_Printf(LogDEBUG, "%s: offline -> online\n", p->link.name);
169 log_Printf(LogDEBUG, "%s: online -> offline\n", p->link.name);
170 log_Printf(LogPHASE, "%s: Carrier lost\n", p->link.name);
175 log_Printf(LogDEBUG, "%s: Still %sline\n", p->link.name
    [all...]
lqr.c 55 #include "link.h"
77 struct hdlc *hdlc = &link2physical(lcp->fsm.link)->hdlc;
90 struct hdlc *hdlc = &link2physical(fp->link)->hdlc;
105 " got 0x%08x\n", fp->link->name, lcp->his_magic, lqr.magic);
157 link_PushPacket(lcp->fsm.link, bp, lcp->fsm.bundle,
158 LINK_QUEUES(lcp->fsm.link) - 1, PROTO_LQR);
165 struct physical *p = link2physical(lcp->fsm.link);
173 lcp->fsm.link->name);
175 lcp->fsm.link->name);
188 lcp->fsm.link->name)
    [all...]
acf.c 47 #include "link.h"
59 acf_LayerPush(struct bundle *b __unused, struct link *l, struct mbuf *bp,
73 acf_LayerPull(struct bundle *b __unused, struct link *l, struct mbuf *bp,
80 log_Printf(LogERROR, "Can't Pull an acf packet from a logical link\n");
85 if (!p->link.lcp.want_acfcomp) {
lcp.h 100 unsigned lqr : 2; /* Link Quality Report */
128 struct link;
134 extern void lcp_Init(struct lcp *, struct bundle *, struct link *,
142 extern struct mbuf *lcp_Input(struct bundle *, struct link *, struct mbuf *);
udp.c 56 #include "link.h"
207 p->link.name, strerror(errno));
214 log_Printf(LogWARN, "%s: %s: unknown host\n", p->link.name, host);
224 log_Printf(LogWARN, "%s: %s: unknown service\n", p->link.name, port);
230 log_Printf(LogPHASE, "%s: Connecting to %s:%s/udp\n", p->link.name,
235 log_Printf(LogDEBUG, "%s: Opened udp socket %s\n", p->link.name,
290 log_Printf(LogPHASE, "%s: Link is a closed socket !\n", p->link.name);
302 p->link.name, strerror(errno));
307 log_Printf(LogPHASE, "%s: Link is a connected udp socket\n"
    [all...]
  /external/chromium_org/third_party/freetype/src/cache/
ftccache.c 155 *pnode = node->link;
156 node->link = new_list;
160 pnode = &node->link;
205 pnode = &(*pnode)->link;
244 pnode = &(*pnode)->link;
247 *pnode = node0->link;
248 node0->link = NULL;
263 node->link = *pnode;
369 next = node->link;
370 node->link = NULL
    [all...]
  /external/freetype/src/cache/
ftccache.c 155 *pnode = node->link;
156 node->link = new_list;
160 pnode = &node->link;
205 pnode = &(*pnode)->link;
244 pnode = &(*pnode)->link;
247 *pnode = node0->link;
248 node0->link = NULL;
263 node->link = *pnode;
369 next = node->link;
370 node->link = NULL
    [all...]
  /developers/build/prebuilts/gradle/BasicSyncAdapter/BasicSyncAdapterSample/src/main/java/com/example/android/basicsyncadapter/net/
FeedParser.java 54 * @return List of {@link com.example.android.basicsyncadapter.net.FeedParser.Entry} objects.
75 * @return List of {@link com.example.android.basicsyncadapter.net.FeedParser.Entry} objects.
102 // <link rel="alternate" type="text/html" href="http://example.com/article/1234"/>
103 // <link rel="edit" href="http://example.com/admin/article/1234"/>
123 * Parses the contents of an entry. If it encounters a title, summary, or link tag, hands them
131 String link = null; local
145 } else if (name.equals("link")) {
146 // Example: <link rel="alternate" type="text/html" href="http://example.com/article/1234"/>
148 // Multiple link types can be included. readAlternateLink() will only return
149 // non-null when reading an "alternate"-type link. Ignore other responses
212 String link = null; local
268 public final String link; field in class:FeedParser.Entry
    [all...]
  /developers/samples/android/connectivity/sync/BasicSyncAdapter/BasicSyncAdapterSample/src/main/java/com/example/android/basicsyncadapter/net/
FeedParser.java 54 * @return List of {@link com.example.android.basicsyncadapter.net.FeedParser.Entry} objects.
75 * @return List of {@link com.example.android.basicsyncadapter.net.FeedParser.Entry} objects.
102 // <link rel="alternate" type="text/html" href="http://example.com/article/1234"/>
103 // <link rel="edit" href="http://example.com/admin/article/1234"/>
123 * Parses the contents of an entry. If it encounters a title, summary, or link tag, hands them
131 String link = null; local
145 } else if (name.equals("link")) {
146 // Example: <link rel="alternate" type="text/html" href="http://example.com/article/1234"/>
148 // Multiple link types can be included. readAlternateLink() will only return
149 // non-null when reading an "alternate"-type link. Ignore other responses
212 String link = null; local
268 public final String link; field in class:FeedParser.Entry
    [all...]
  /development/samples/browseable/BasicSyncAdapter/src/com.example.android.basicsyncadapter/net/
FeedParser.java 54 * @return List of {@link com.example.android.basicsyncadapter.net.FeedParser.Entry} objects.
75 * @return List of {@link com.example.android.basicsyncadapter.net.FeedParser.Entry} objects.
102 // <link rel="alternate" type="text/html" href="http://example.com/article/1234"/>
103 // <link rel="edit" href="http://example.com/admin/article/1234"/>
123 * Parses the contents of an entry. If it encounters a title, summary, or link tag, hands them
131 String link = null; local
145 } else if (name.equals("link")) {
146 // Example: <link rel="alternate" type="text/html" href="http://example.com/article/1234"/>
148 // Multiple link types can be included. readAlternateLink() will only return
149 // non-null when reading an "alternate"-type link. Ignore other responses
212 String link = null; local
268 public final String link; field in class:FeedParser.Entry
    [all...]
  /external/qemu/distrib/sdl-1.2.15/test/
gcc-fat.sh 59 link=yes
69 compile=no; link=no;;
70 -c) link=no;;
76 if test x$link = xyes; then
81 if test x$link = xyes; then
  /external/qemu/hw/
bt-hci.c 57 struct bt_link_s *link; member in struct:bt_hci_s::__anon25252::bt_hci_master_link_s
58 void (*lmp_acl_data)(struct bt_link_s *link,
620 !hci->lm.handle[handle & ~HCI_HANDLE_OFFSET].link;
631 struct bt_link_s *link = hci->lm.handle[handle & ~HCI_HANDLE_OFFSET].link; local
633 return bt_hci_role_master(hci, handle) ? link->slave : link->host;
638 struct bt_link_s *link, int master)
640 hci->lm.handle[hci->lm.last_handle].link = link;
678 struct bt_link_s link; local
698 struct bt_link_s link = { local
724 struct bt_hci_link_s *link = qemu_mallocz(sizeof(struct bt_hci_link_s)); local
880 struct bt_hci_link_s *link; local
926 struct bt_hci_link_s *link = (struct bt_hci_link_s *) btlink; local
1065 struct bt_hci_link_s *link = (struct bt_hci_link_s *) btlink; local
1074 struct bt_hci_master_link_s *link; local
1096 struct bt_hci_master_link_s *link; local
1118 struct bt_link_s *link = opaque; local
1995 struct bt_hci_link_s *link = (struct bt_hci_link_s *) btlink; local
2014 struct bt_link_s *link; local
    [all...]
  /external/chromium_org/chrome/browser/chromeos/ui/
echo_dialog_view.cc 44 base::string16 link = local
50 link,
65 label_->AddStyleRange(gfx::Range(offsets[1], offsets[1] + link.length()),
77 base::string16 link = local
82 IDS_ECHO_DISABLED_CONSENT_DIALOG_TEXT, link, &offset);
89 label_->AddStyleRange(gfx::Range(offset, offset + link.length()), link_style);
  /developers/build/
gradlew 51 # Resolve links: $0 may be a link
56 link=`expr "$ls" : '.*-> \(.*\)$'`
57 if expr "$link" : '/.*' > /dev/null; then
58 PRG="$link"
60 PRG=`dirname "$PRG"`"/$link"
  /developers/build/prebuilts/gradle/ActionBarCompat-Basic/
gradlew 51 # Resolve links: $0 may be a link
56 link=`expr "$ls" : '.*-> \(.*\)$'`
57 if expr "$link" : '/.*' > /dev/null; then
58 PRG="$link"
60 PRG=`dirname "$PRG"`"/$link"
  /developers/build/prebuilts/gradle/ActionBarCompat-ListPopupMenu/
gradlew 51 # Resolve links: $0 may be a link
56 link=`expr "$ls" : '.*-> \(.*\)$'`
57 if expr "$link" : '/.*' > /dev/null; then
58 PRG="$link"
60 PRG=`dirname "$PRG"`"/$link"
  /developers/build/prebuilts/gradle/ActionBarCompat-ShareActionProvider/
gradlew 51 # Resolve links: $0 may be a link
56 link=`expr "$ls" : '.*-> \(.*\)$'`
57 if expr "$link" : '/.*' > /dev/null; then
58 PRG="$link"
60 PRG=`dirname "$PRG"`"/$link"
  /developers/build/prebuilts/gradle/ActionBarCompat-Styled/
gradlew 51 # Resolve links: $0 may be a link
56 link=`expr "$ls" : '.*-> \(.*\)$'`
57 if expr "$link" : '/.*' > /dev/null; then
58 PRG="$link"
60 PRG=`dirname "$PRG"`"/$link"
  /developers/build/prebuilts/gradle/ActivityInstrumentation/
gradlew 51 # Resolve links: $0 may be a link
56 link=`expr "$ls" : '.*-> \(.*\)$'`
57 if expr "$link" : '/.*' > /dev/null; then
58 PRG="$link"
60 PRG=`dirname "$PRG"`"/$link"
  /developers/build/prebuilts/gradle/AdvancedImmersiveMode/
gradlew 51 # Resolve links: $0 may be a link
56 link=`expr "$ls" : '.*-> \(.*\)$'`
57 if expr "$link" : '/.*' > /dev/null; then
58 PRG="$link"
60 PRG=`dirname "$PRG"`"/$link"
  /developers/build/prebuilts/gradle/AppRestrictions/
gradlew 51 # Resolve links: $0 may be a link
56 link=`expr "$ls" : '.*-> \(.*\)$'`
57 if expr "$link" : '/.*' > /dev/null; then
58 PRG="$link"
60 PRG=`dirname "$PRG"`"/$link"
  /developers/build/prebuilts/gradle/BasicAccessibility/
gradlew 51 # Resolve links: $0 may be a link
56 link=`expr "$ls" : '.*-> \(.*\)$'`
57 if expr "$link" : '/.*' > /dev/null; then
58 PRG="$link"
60 PRG=`dirname "$PRG"`"/$link"
  /developers/build/prebuilts/gradle/BasicAndroidKeyStore/
gradlew 51 # Resolve links: $0 may be a link
56 link=`expr "$ls" : '.*-> \(.*\)$'`
57 if expr "$link" : '/.*' > /dev/null; then
58 PRG="$link"
60 PRG=`dirname "$PRG"`"/$link"

Completed in 871 milliseconds

1 2 3 4 5 67 8 91011>>