Home
last modified time | relevance | path

Searched refs:tap (Results 1 – 25 of 71) sorted by relevance

123

/external/autotest/client/deps/lansim/src/py/
Dtuntap_unittest.py15 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)
36 tap = tuntap.TunTap(tuntap.IFF_TAP, name="faketap%d")
37 family, addr = tap.get_hwaddr()
43 new_family, new_addr = tap.set_hwaddr(addr)
47 new_family, new_addr = tap.get_hwaddr()
[all …]
/external/ImageMagick/tests/
DMakefile.am41 tests/cli-colorspace.tap \
42 tests/cli-pipe.tap \
43 tests/validate-colorspace.tap \
44 tests/validate-compare.tap \
45 tests/validate-composite.tap \
46 tests/validate-convert.tap \
47 tests/validate-formats-disk.tap \
48 tests/validate-formats-map.tap \
49 tests/validate-formats-memory.tap \
50 tests/validate-identify.tap \
[all …]
/external/autotest/client/cros/
Dp2p_utils.py71 self.tap = None
96 self.tap = tuntap.TunTap(tuntap.IFF_TAP, name=self._tap_name)
97 self.tap.set_addr(self._tap_ip, self._tap_mask)
98 self.tap.up()
102 dumpfile = os.path.join(dumpdir, 'dump-%s.pcap' % self.tap.name)
103 self._tcpdump = tcpdump.Tcpdump(self.tap.name, dumpfile)
106 avahi_utils.avahi_start_on_iface(self.tap.name)
125 if self.tap:
126 self.tap.down()
/external/autotest/client/site_tests/touch_TapSettings/
Dcontrol7 PURPOSE = "Test that tap-to-click and tap dragging can be enabled/disabled."
9 This test will fail if, after playback of touch events, tap-to-click or tap
20 Uses javascript page to listen for mouse clicks and drags. If tap-to-click is
21 working, the click count will increase. If tap dragging is working, movement
22 will be detected during a click. Enables and disables tap-to-click and tap
DREADME1 touch_TapSettings test uses two gesture files that do tap and drag functions.
4 middle of the test (tap and no drag) or multiple drag recording etc would break
8 …EVICE NAME>_touchpad_Touch ID_tap-drag-right - Tap_drag means: Tap (one full tap) and then half tap
9 … (do not release tap) to start the drag. Without lifting it,
/external/walt/pywalt/
DREADME.md5 * Currently supprots tap and drag (scroll) latency measurements
24 -t TYPE, --type TYPE Test type: drag|tap|screen|sanity|curve|bridge
35 See the [tap latency section](../docs/usage/WALT_usage.md#tap-latency) in Android app usage doc.
37 Below is output from an example run of a tap latency test that reads touch events from `/dev/input/…
44 $ ./walt.py -t tap -n 40 -i /dev/input/event4
46 Starting tap latency test
50 shock t 1990338, tap t 1487105212.048997, tap val 1. dt=63738.9
53 shock t 2219992, tap t 1487105212.262449, tap val 0. dt=47537.0
/external/libpcap/
Dpcap-enet.c35 struct tap_header tap; member
76 caplen = ph->tap.th_wirelen > snaplen ? snaplen : ph->tap in readloop()
79 ph->tap.th_wirelen, caplen)) { in readloop()
83 (struct timeval *)ph->tap.th_timestamp, in readloop()
84 ph->tap.th_wirelen, caplen); in readloop()
/external/autotest/client/deps/lansim/
Dcontrol35 For example, to create a tap interface you can do the following:
37 tap = tuntap.TunTap(tuntap.IFF_TAP, name="faketap")
38 print "Interface running on", tap.name
46 tap.set_addr("192.168.0.123")
47 tap.up()
55 simu = simulator.SimulatorThread(tap)
/external/scapy/test/
Dsendsniff.uts7 + Test bridge_and_sniff() using tap sockets
9 ~ tap linux
11 = Create two tap interfaces
16 tap0, tap1 = [TunTapInterface("tap%d" % i) for i in range(2)]
20 assert subprocess.check_call(["ip", "link", "set", "tap%d" % i, "up"]) == 0
23 assert subprocess.check_call(["ifconfig", "tap%d" % i, "up"]) == 0
83 = Delete the tap interfaces
/external/lisa/libs/utils/android/workloads/
Dvellamo.py130 System.tap(self._target, 80, 86)
133 System.tap(self._target, 50, 67)
136 System.tap(self._target, 46, 78)
138 System.tap(self._target, test_x, test_y)
Dgeekbench.py104 System.tap(self._target, 73, 55)
113 System.tap(self._target, 73, 72)
Ddisplay_image.py98 System.tap(self._target, 50, 50)
/external/walt/docs/
DTapLatency.md3 …* [Video demonstration of tap latency measurement](https://www.youtube.com/watch?v=1xAReF75Cts&lis…
4 …* [Detailed instructions on how to perform the measurement in usage doc](usage/WALT_usage.md#tap-l…
19 and include the kernel timestamp. For tap, the relevant MotionEvent types are
32 ![Tap measurement](usage/images/tap.png)
/external/linux-kselftest/tools/testing/selftests/tc-testing/
Dtdc.py104 tap = str(index) + ".." + str(tcount) + "\n"
131 tap += tresult + str(index) + " " + tidx["id"] + " " + tidx["name"] + "\n"
134 tap += procout
139 return tap
/external/ImageMagick/config/
Dtap-driver.sh32 me=tap-driver.sh
51 tap-driver.sh --test-name=NAME --log-file=PATH --trs-file=PATH
/external/webrtc/webrtc/base/
Dhttpclient.cc482 StreamTap* tap = new StreamTap(output, stream.release()); in BeginCacheFile() local
483 response().document.reset(tap); in BeginCacheFile()
504 StreamTap* tap = static_cast<StreamTap*>(response().document.release()); in CompleteCacheFile() local
505 response().document.reset(tap->Detach()); in CompleteCacheFile()
508 StreamResult result = tap->GetTapResult(&error); in CompleteCacheFile()
511 delete tap; in CompleteCacheFile()
Dstream.cc243 StreamTap::StreamTap(StreamInterface* stream, StreamInterface* tap) in StreamTap() argument
246 AttachTap(tap); in StreamTap()
251 void StreamTap::AttachTap(StreamInterface* tap) { in AttachTap() argument
252 tap_.reset(tap); in AttachTap()
/external/autotest/client/site_tests/p2p_ShareFiles/
Dp2p_ShareFiles.py62 self._sim = simulator.Simulator(self._p2p.tap)
84 if len(ips) != 1 or ips[0] != self._p2p.tap.addr:
/external/autotest/client/site_tests/p2p_ServeFiles/
Dp2p_ServeFiles.py111 self._sim = simulator.SimulatorThread(self._p2p.tap)
138 len(ips) != 1) or ips[0] != self._p2p.tap.addr:
/external/libvpx/libvpx/vpx_dsp/x86/
Dintrapred_ssse3.asm326 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-Bg
[all …]
/external/autotest/client/site_tests/touch_TouchscreenTaps/
DREADME4 firmly as though to tap. Make only the one gesture; no stray touches.
/external/autotest/client/site_tests/firmware_TouchMTB/tests/logs/link/20130806_221321-fw_1.0.AA-robot/
Dtouch_firmware_report-link-fw_1.0.AA-robot-20130806_2213212554 Use one finger to tap on the top left corner of the touch surface.
2589 Use one finger to tap on the top left corner of the touch surface.
2624 Use one finger to tap on the top left corner of the touch surface.
2659 Use one finger to tap on the top right corner of the touch surface.
2694 Use one finger to tap on the top right corner of the touch surface.
2729 Use one finger to tap on the top right corner of the touch surface.
2764 Use one finger to tap on the bottom left corner of the touch surface.
2799 Use one finger to tap on the bottom left corner of the touch surface.
2834 Use one finger to tap on the bottom left corner of the touch surface.
2869 Use one finger to tap on the bottom right corner of the touch surface.
[all …]
/external/walt/docs/usage/
DWALT_usage.md38 * You may be prompted to grant the WALT app permission to use the USB, tap "OK"
181 …screen for a bit longer than you would usually keep the finger on the glass during a momentary tap.
186 ![Tap latency measurement](images/tap.png)
194 ## Restarting tap latency measurement. Re-sync clocks ...
216 ## Processing tap latency data
/external/ImageMagick/
DMakefile.am72 TEST_EXTENSIONS = .sh .tap
75 $(top_srcdir)/config/tap-driver.sh
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/
Dcore-extensions.rb189 File.expand_path( path.to_s ).split( File::Separator ).tap do |list|

123