HomeSort by relevance Sort by last modified time
    Searched refs:unit (Results 126 - 150 of 262) sorted by null

1 2 3 4 56 7 8 91011

  /packages/apps/Email/
Android.mk 33 # The Emma tool analyzes code coverage when running unit tests on the
46 # additionally, build unit tests in a separate .apk
  /external/ppp/pppd/
pppd.h 214 extern int ifunit; /* Interface unit number */
314 extern int req_unit; /* interface unit number to use */
394 void (*init) __P((int unit));
396 void (*input) __P((int unit, u_char *pkt, int len));
398 void (*protrej) __P((int unit));
400 void (*lowerup) __P((int unit));
402 void (*lowerdown) __P((int unit));
404 void (*open) __P((int unit));
406 void (*close) __P((int unit, char *reason));
412 void (*datainput) __P((int unit, u_char *pkt, int len))
    [all...]
eap.c 81 eap_state eap_states[NUM_PPP]; /* EAP state; one for each unit */
114 static void eap_init __P((int unit));
115 static void eap_input __P((int unit, u_char *inp, int inlen));
116 static void eap_protrej __P((int unit));
117 static void eap_lowerup __P((int unit));
118 static void eap_lowerdown __P((int unit));
200 eap_init(unit)
201 int unit;
203 eap_state *esp = &eap_states[unit];
206 esp->es_unit = unit;
    [all...]
sys-solaris.c 609 /* Assign a new PPA and get its unit number. */
624 * IP will assign a unit number which hopefully is the same as ifunit.
657 * Assign ppa according to the unit number returned by ppp device
665 fatal("Can't set ppa for unit %d: %m", ifunit);
681 * Assign ppa according to the unit number returned by ppp device
688 fatal("Can't set ifname for unit %d: %m", ifunit);
2224 int unit, iffd, adrlen; local
    [all...]
sys-linux.c 187 * which is attached to the ppp unit and is used for controlling it.
408 * Demand mode - prime the old ppp device to relinquish the unit.
412 error("ioctl(transfer ppp unit): %m, line %d", __LINE__);
483 * Create a new PPP unit.
495 error("Couldn't attach to PPP unit %d: %m", ifunit);
510 /* Check that we got the same unit again. */
512 fatal("transfer_ppp failed: wanted unit %d, got %d", ifunit, x);
587 * operation, and reconnect the ppp unit to the loopback if in demand
613 * make_ppp_unit - make a new ppp unit for ppp_dev_fd.
635 warn("Couldn't allocate PPP unit %d as it is already in use", req_unit)
    [all...]
  /frameworks/base/tools/localize/
localize.cpp 175 keep_this_trans_unit(const string& file, const TransUnit& unit, void* cookie)
179 if (contains_reject(*settings, file, unit)) {
183 if (unit.source.id == "") {
186 if (unit.altTarget.id == "" || unit.altSource.id == "") {
189 return unit.source.value->ContentsToString(XLIFF_NAMESPACES)
190 != unit.altSource.value->ContentsToString(XLIFF_NAMESPACES);
478 pseudolocalize_trans_unit(const string&file, TransUnit* unit, void* cookie)
482 const StringResource& source = unit->source;
483 StringResource* target = &unit->target
    [all...]
  /external/libpcap/
pcap-dlpi.c 503 * Split the device name into a device type name and a unit number;
504 * chop off the unit number, so "dname" is just a device type name.
546 * table for the specified device type name and unit number.
565 * Get the unit number, and a pointer to the end of the device
573 * Make a copy of the device pathname, and then remove the unit
579 /* Try device without unit number */
587 /* Try again with unit number */
613 /* XXX Assume unit zero */
967 * Split a device name into a device type name and a unit number;
968 * return the a pointer to the beginning of the unit number, whic
979 long unit; local
    [all...]
  /build/tools/droiddoc/templates/
docpage.cs 8 <div class="g-unit" id="doc-content"><a name="top"></a>
  /dalvik/vm/mterp/armv5te/
OP_PACKED_SWITCH.S 19 bl $func @ r0<- code-unit branch offset
  /external/grub/stage2/
serial.c 49 /* Store the port number of a serial unit. */
119 serial_hw_get_port (int unit)
124 return addr[unit];
  /external/guava/src/com/google/common/util/concurrent/
Executors.java 57 * @param timeUnit unit of time for the time parameter
85 * @param timeUnit unit of time for the time parameter
110 * @param timeUnit unit of time for the time parameter
300 public boolean awaitTermination(long timeout, TimeUnit unit)
302 long nanos = unit.toNanos(timeout);
  /external/ppp/pppd/include/net/
ppp-comp.h 67 int unit, int hdrlen, int debug));
82 int unit, int hdrlen, int mru, int debug));
  /frameworks/base/core/java/android/os/
AsyncTask.java 348 * @param unit The time unit for the timeout.
358 public final Result get(long timeout, TimeUnit unit) throws InterruptedException,
360 return mFuture.get(timeout, unit);
  /libcore/luni/src/main/java/java/util/concurrent/
FutureTask.java 89 public V get(long timeout, TimeUnit unit)
91 return sync.innerGet(unit.toNanos(timeout));
DelayQueue.java 144 * @param unit This parameter is ignored as the method never blocks
148 public boolean offer(E e, long timeout, TimeUnit unit) {
223 public E poll(long timeout, TimeUnit unit) throws InterruptedException {
224 long nanos = unit.toNanos(timeout);
PriorityBlockingQueue.java 201 * @param unit This parameter is ignored as the method never blocks
208 public boolean offer(E e, long timeout, TimeUnit unit) {
241 public E poll(long timeout, TimeUnit unit) throws InterruptedException {
242 long nanos = unit.toNanos(timeout);
ArrayBlockingQueue.java 276 public boolean offer(E e, long timeout, TimeUnit unit)
280 long nanos = unit.toNanos(timeout);
334 public E poll(long timeout, TimeUnit unit) throws InterruptedException {
335 long nanos = unit.toNanos(timeout);
LinkedBlockingQueue.java 341 public boolean offer(E e, long timeout, TimeUnit unit)
345 long nanos = unit.toNanos(timeout);
425 public E poll(long timeout, TimeUnit unit) throws InterruptedException {
428 long nanos = unit.toNanos(timeout);
  /libcore/luni/src/main/java/java/util/concurrent/locks/
ReentrantLock.java 357 * <pre>if (lock.tryLock() || lock.tryLock(timeout, unit) ) { ... }
405 * @param unit the time unit of the timeout argument
411 * @throws NullPointerException if the time unit is null
414 public boolean tryLock(long timeout, TimeUnit unit) throws InterruptedException {
415 return sync.tryAcquireNanos(1, unit.toNanos(timeout));
ReentrantReadWriteLock.java 792 * <pre>if (lock.tryLock() || lock.tryLock(timeout, unit) ) { ... }
835 * @param unit the time unit of the timeout argument
    [all...]
  /frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/unit/
WifiSoftAPTest.java 17 package com.android.connectivitymanagertest.unit;
  /build/tools/droiddoc/templates-pdk/
customization.cs 47 <div class="g-unit g-first side-nav-resizable" id="side-nav">
62 <div class="g-unit g-first side-nav-resizable" id="side-nav">
77 <div class="g-unit g-first side-nav-resizable" id="side-nav">
92 <div class="g-unit g-first side-nav-resizable" id="side-nav">
107 <div class="g-unit g-first side-nav-resizable" id="side-nav">
122 <div class="g-unit g-first side-nav-resizable" id="side-nav">
  /external/skia/src/utils/
SkCamera.cpp 78 SkUnitScalar SkPoint3D::normalize(SkUnit3D* unit) const
85 unit->fX = fX * scale;
86 unit->fY = fY * scale;
87 unit->fZ = fZ * scale;
103 unit->fX = SkFixedMul(fX, scale);
104 unit->fY = SkFixedMul(fY, scale);
105 unit->fZ = SkFixedMul(fZ, scale);
  /external/ipsec-tools/src/libipsec/
pfkey_dump.c 792 char *unit; local
803 unit = "M";
807 unit = "K";
811 unit = "";
816 unit = "";
819 printf("\t%s: %.*f(%sbytes)", str, w, y, unit);
  /external/qemu/hw/
qdev.h 78 int unit);

Completed in 1815 milliseconds

1 2 3 4 56 7 8 91011