HomeSort by relevance Sort by last modified time
    Searched refs:tap (Results 1 - 25 of 61) sorted by null

1 2 3

  /external/autotest/client/deps/lansim/src/py/
tuntap_unittest.py 14 """Tests creation of a TAP device and its attributes."""
15 tap = tuntap.TunTap(tuntap.IFF_TAP, name="faketap%d")
17 self.assertEqual(tap.mode, tuntap.IFF_TAP)
20 self.assertTrue(hasattr(tap, 'name'))
21 self.assertTrue(tap.name.startswith('faketap'))
24 self.assertTrue(hasattr(tap, 'mtu'))
25 self.assertTrue(tap.mtu)
29 """Tests creation of a TAP device and its attributes."""
35 """Tests that we can get and set the HW address of a TAP device."""
36 tap = tuntap.TunTap(tuntap.IFF_TAP, name="faketap%d"
    [all...]
  /external/autotest/client/cros/
p2p_utils.py 52 """Manage a p2p-server instance running over a TAP interface.
54 This class manages a p2p-server instance configured to run over a TAP
61 @param tap_ip: IPv4 address for the TAP interface on the DUT's end.
63 @param tap_name: The name prefix for the TAP interface.
71 self.tap = None
76 """Initializes avahi daemon on a new tap interface.
78 @param dumpdir: Directory where the traffic on the new tap interface
95 # Initialize the TAP interface.
96 self.tap = tuntap.TunTap(tuntap.IFF_TAP, name=self._tap_name)
97 self.tap.set_addr(self._tap_ip, self._tap_mask
    [all...]
  /kernel/tests/net/test/
run_net_test.sh 37 # How many TAP interfaces to create to provide the VM with real network access
44 # does not perform any host-level setup beyond configuring tap interfaces;
140 # If network access was requested, create NUMTAPINTERFACES tap interfaces on
148 tap=${user}TAP$id
149 tapinterfaces="$tapinterfaces $tap"
151 netconfig="$netconfig eth$id=tuntap,$tap,$mac"
154 for tap in $tapinterfaces; do
155 if ! ip link list $tap > /dev/null; then
156 echo "Creating tap interface $tap" >&
    [all...]
  /prebuilts/go/darwin-x86/src/math/rand/
rng.go 184 tap int // index into vec
202 rng.tap = 0
236 rng.tap--
237 if rng.tap < 0 {
238 rng.tap += _LEN
246 x := rng.vec[rng.feed] + rng.vec[rng.tap]
gen_cooked.go 18 tap = 273
43 rngFeed = length - tap
17 tap = 273 const
  /prebuilts/go/linux-x86/src/math/rand/
rng.go 184 tap int // index into vec
202 rng.tap = 0
236 rng.tap--
237 if rng.tap < 0 {
238 rng.tap += _LEN
246 x := rng.vec[rng.feed] + rng.vec[rng.tap]
gen_cooked.go 18 tap = 273
43 rngFeed = length - tap
17 tap = 273 const
  /external/libpcap/
pcap-enet.c 35 struct tap_header tap; member in struct:packet_header
76 caplen = ph->tap.th_wirelen > snaplen ? snaplen : ph->tap
79 ph->tap.th_wirelen, caplen)) {
83 (struct timeval *)ph->tap.th_timestamp,
84 ph->tap.th_wirelen, caplen);
  /external/chromium-trace/catapult/telemetry/telemetry/internal/actions/
tap_unittest.py 6 from telemetry.internal.actions import tap
12 action = tap.TapAction(*args, **kwargs)
27 self._PerformTapAction(text='Click/tap me')
tap.js 28 chrome.gpuBenchmarking.tap &&
59 throw new Error('Tap position is off-screen');
61 chrome.gpuBenchmarking.tap(position_left, position_top,
  /external/ImageMagick/config/
tap-driver.sh 32 me=tap-driver.sh
51 tap-driver.sh --test-name=NAME --log-file=PATH --trs-file=PATH
160 # associative array that (partly) simulates a TAP result object
161 # from the `TAP::Parser` perl module.
277 # especially true when said result is a TAP error or "Bail out!").
328 # The TAP plan can come before or after *all* the TAP results; we speak
330 # after at least one TAP result has been seen, assume we have a late
363 # When this function is called, we know that line is a TAP result line,
386 # No further test results are acceptable after a "late" TAP pla
    [all...]
  /external/autotest/client/site_tests/p2p_ShareFiles/
p2p_ShareFiles.py 62 self._sim = simulator.Simulator(self._p2p.tap)
84 if len(ips) != 1 or ips[0] != self._p2p.tap.addr:
  /hardware/invensense/6515/libsensors_iio/software/simple_apps/gesture_test/
inv_gesture_test.c 354 int tap, tap_dir, tap_num; local
357 fscanf(fp, "%d\n", &tap);
360 tap_dir = tap/8;
361 tap_num = tap%8 + 1;
364 printf("GT:Tap Handler **\n");
365 printf("Tap= %x\n", tap);
366 printf("Tap Dir= %x\n", tap_dir);
367 printf("Tap Num= %x\n", tap_num);
372 printf("Tap Axis->X Pos, ")
    [all...]
  /external/autotest/client/site_tests/p2p_ServeFiles/
p2p_ServeFiles.py 111 self._sim = simulator.SimulatorThread(self._p2p.tap)
138 len(ips) != 1) or ips[0] != self._p2p.tap.addr:
  /external/chromium-trace/catapult/telemetry/third_party/web-page-replay/
adb_install_cert.py 231 self._adb_shell('input', 'tap', '300', '300')
  /hardware/invensense/6515/libsensors_iio/software/simple_apps/stress_iio/
stress_iio.c 53 static void HandleTap(struct dmp_struct *dmp, int tap);
97 static void HandleTap(struct dmp_struct *dmp, int tap)
99 int tap_dir = tap/8;
100 int tap_num = tap%8 + 1;
124 printf("Tap number: %d\n", tap_num);
  /external/webrtc/webrtc/base/
httpclient.cc 482 StreamTap* tap = new StreamTap(output, stream.release()); local
483 response().document.reset(tap);
504 StreamTap* tap = static_cast<StreamTap*>(response().document.release()); local
505 response().document.reset(tap->Detach());
508 StreamResult result = tap->GetTapResult(&error);
510 // Delete the tap and cache stream (which completes cache unlock)
511 delete tap;
stream.h 313 // in either direction to the tap. Note that errors or blocking on writing to
314 // the tap will prevent further tap writes from occurring.
319 explicit StreamTap(StreamInterface* stream, StreamInterface* tap);
322 void AttachTap(StreamInterface* tap);
stream.cc 243 StreamTap::StreamTap(StreamInterface* stream, StreamInterface* tap)
246 AttachTap(tap);
251 void StreamTap::AttachTap(StreamInterface* tap) {
252 tap_.reset(tap);
  /external/libvpx/libvpx/vpx_dsp/x86/
intrapred_ssse3.asm 326 X_PLUS_2Y_PLUS_Z_PLUS_2_RSH_2 m0, m1, m2, m3 ; 3-tap avg B4 B3 B2 B1 C1 D1
327 pavgb m1, m0 ; 2-tap avg A4 A3 A2 A1
364 pavgb m6, m1, m2 ; 2-tap avg A8-A1
366 X_PLUS_2Y_PLUS_Z_PLUS_2_RSH_2 m0, m4, m5, m7 ; 3-tap avg C-H1
368 X_PLUS_2Y_PLUS_Z_PLUS_2_RSH_2 m1, m2, m3, m0 ; 3-tap avg B8-1
419 X_PLUS_2Y_PLUS_Z_PLUS_2_RSH_2 m0, m5, m3, m4 ; 3-tap avg B3-Bg
429 X_PLUS_2Y_PLUS_Z_PLUS_2_RSH_2 m7, m3, m5, m1 ; 3-tap avg C1-P1
482 X_PLUS_2Y_PLUS_Z_PLUS_2_RSH_2 m1, m4, m6, m2 ; 3-tap avg above [high]
487 X_PLUS_2Y_PLUS_Z_PLUS_2_RSH_2 m7, m3, m5, m1 ; 3-tap avg above [low]
493 X_PLUS_2Y_PLUS_Z_PLUS_2_RSH_2 m0, m5, m3, m4 ; 3-tap avg B3-B
    [all...]
  /hardware/invensense/6515/libsensors_iio/software/simple_apps/mpu_iio/
mpu_iio.c 366 void handle_tap(int tap)
368 int tap_dir = tap / 8;
369 int tap_num = tap % 8 + 1;
371 printf("tap=");
607 when using -p, 1 means orientation, 2 means tap, 3 means flick */
  /external/ImageMagick/Magick++/
Makefile.am 44 Magick++/tests/tests.tap \
45 Magick++/demo/demos.tap
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/
core-extensions.rb 189 File.expand_path( path.to_s ).split( File::Separator ).tap do |list|
grammar.rb 155 tap { |list| list.flatten! }
  /external/libavc/common/arm/
ih264_inter_pred_luma_horz_hpel_vert_hpel_a9q.s 50 @* This function implements a two stage cascaded six tap filter. It
51 @* applies the six tap filter in the vertical direction on the
53 @* horizontal direction on the output of the first stage. The six tap

Completed in 1311 milliseconds

1 2 3