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

1 2

  /hardware/interfaces/biometrics/fingerprint/2.1/
types.hal 107 FingerprintFingerId finger;
118 FingerprintFingerId finger;
133 FingerprintFingerId finger;
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/projection/touch/
TouchPointView.java 46 List<Finger> mFingers;
55 mFingers = new ArrayList<Finger>();
71 Finger finger = new Finger(); local
72 finger.point = new Point((int)event.getX(pointerIndex), (int)event.getY(pointerIndex));
73 finger.pointerId = pointerId;
75 mFingers.add(finger);
85 Finger finger = mFingers.get(i) local
    [all...]
  /packages/services/Car/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/touch/
TouchPointView.java 47 List<Finger> mFingers;
56 mFingers = new ArrayList<Finger>();
76 Finger finger = new Finger(); local
77 finger.point = new Point((int)event.getX(pointerIndex), (int)event.getY(pointerIndex));
78 finger.pointerId = pointerId;
80 mFingers.add(finger);
109 Finger finger = mFingers.get(i) local
    [all...]
  /hardware/interfaces/biometrics/fingerprint/2.1/default/
BiometricsFingerprint.cpp 291 msg->data.enroll.finger.fid,
292 msg->data.enroll.finger.gid,
295 msg->data.enroll.finger.fid,
296 msg->data.enroll.finger.gid,
303 msg->data.removed.finger.fid,
304 msg->data.removed.finger.gid,
307 msg->data.removed.finger.fid,
308 msg->data.removed.finger.gid,
314 if (msg->data.authenticated.finger.fid != 0) {
316 msg->data.authenticated.finger.fid
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/sockets/
finger.py 3 # Python interface to the Internet finger daemon.
5 # Usage: finger [options] [user][@host] ...
7 # If no host is given, the finger daemon on the local host is contacted.
8 # Options are passed uninterpreted to the finger daemon!
15 # Hardcode the number of the finger port here.
21 # Function to do one remote finger invocation.
24 def finger(host, args): function
53 finger(host, options + arg)
  /external/python/cpython2/Demo/sockets/
finger.py 3 # Python interface to the Internet finger daemon.
5 # Usage: finger [options] [user][@host] ...
7 # If no host is given, the finger daemon on the local host is contacted.
8 # Options are passed uninterpreted to the finger daemon!
15 # Hardcode the number of the finger port here.
21 # Function to do one remote finger invocation.
24 def finger(host, args): function
53 finger(host, options + arg)
  /hardware/libhardware/include/hardware/
fingerprint.h 74 FINGERPRINT_ACQUIRED_DETECTED = 6, /* when the finger is first detected. Used to optimize wakeup.
85 fingerprint_finger_id_t finger; member in struct:fingerprint_enroll
93 fingerprint_finger_id_t finger; member in struct:fingerprint_iterator
105 fingerprint_finger_id_t finger; member in struct:fingerprint_authenticated
182 * This will be called at the end of a multi-finger enrollment session to indicate
215 * fingerprint_msg.data.enumerated.finger indicating a template id
234 * fingerprint_msg.data.removed.finger indicating a template id deleted
  /external/walt/docs/
DragLatency.md 7 the laser beam is broken. A finger dragged back and forth on a touchpad or touch screen
31 The red 'x' marks are points where the finger was at times _t<sub>i</sub>_ when the finger went into or out of the laser beam. The y distance between the two lines of x marks is roughly the thickness of the finger. For now consider only one of the lines, e.g. the upper one.
33 Now imagine that the clocks timestamping the touch and the laser events diverge a little (this divergence is the latency we want to measure). The red 'x' marks would move along the graph. But half of them would move up and half down (corresponding to direction of the finger movement in that point) and therefore they would diverge in opposite directions from the relatively straight horizontal line you see on the screenshot.
35 The WALT app finds a shift _S_ such that the standard deviation of _y_( _t<sub>i</sub>_ + _S_) is minimal - that is the 'x' marks are as close as possible to a horizontal straight line on the graph below. The reported number is the average of the two time shifts calculated separately for the upper and the lower lines (corresponding to two sides of the finger).
37 This calculation that only looks at the _y_ coordinate assumes the laser beam is parallel to the _x_ axis and prefers no motion of the finger in the _x_ direction.
TapLatency.md 6 WALT uses a ?stylus? equipped with an accelerometer. The finger is imitated by a flat metal
  /art/tools/dexfuzz/src/dexfuzz/rawdex/
CodeItem.java 75 long finger = insnsOffset; local
78 while (finger < insnsEnd) {
79 file.seek(finger);
83 finger += (2 * newInsn.getSize());
86 file.seek(finger);
  /frameworks/base/services/core/jni/
com_android_server_fingerprint_FingerprintService.cpp 101 arg1 = msg.data.authenticated.finger.fid;
102 arg2 = msg.data.authenticated.finger.gid;
109 arg1 = msg.data.enroll.finger.fid;
110 arg2 = msg.data.enroll.finger.gid;
114 arg1 = msg.data.removed.finger.fid;
115 arg2 = msg.data.removed.finger.gid;
173 fingerprint_finger_id_t finger; local
174 finger.fid = fingerId;
175 finger.gid = groupId;
176 int ret = gContext.device->remove(gContext.device, finger);
    [all...]
  /external/autotest/client/site_tests/firmware_TouchMTB/
test_conf.py 201 # Basically, two-fingers gestures follow one-finger gestures.
264 # Define the list of one-finger and two-finger gestures to test using the robot.
330 prompt='Hold one finger on the {3} of the touch surface with a '
380 LinearityNormalFingerValidator(linearity_criteria, finger=0,
402 prompt='Hold one finger on the {3} of the touch surface with a '
436 LinearityNormalFingerValidator(linearity_criteria, finger=0,
463 LinearityNormalFingerValidator(linearity_criteria, finger=0,
492 LinearityNormalFingerValidator(linearity_criteria, finger=0,
494 LinearityNormalFingerValidator(linearity_criteria, finger=1
    [all...]
validators.py 264 def _get_axes_by_finger(self, finger):
265 """Get list_x, list_y, and list_t for the specified finger.
267 @param finger: the finger contact
269 points = self.packets.get_ordered_finger_path(self.finger, 'point')
272 list_t = self.packets.get_ordered_finger_path(self.finger, 'syn_time')
381 To check the linearity of the line drawn in finger 1:
382 LinearityValidator1('<= 0.03, ~ +0.07', finger=1)
387 def __init__(self, criteria_str, mf=None, device=None, finger=0,
390 self.finger = finge
    [all...]
mtb.py 31 # of a finger (i.e., a tracking ID).
33 """This keeps the slot number and the list of tid packets of a finger."""
38 pressure, or syn_time), of TidPacket for the finger.
197 """Is the finger is leaving in this packet?"""
303 """Is there no finger on the touch device?"""
320 - A finger should not leave before arriving. (Should not set -1 to the
365 # finger arriving
371 # finger leaving
378 # access a slot attribute before finger arriving
540 # One-finger touching the device should generate the following events
    [all...]
  /frameworks/base/core/java/android/os/
Build.java 931 String finger = SystemProperties.get("ro.build.fingerprint"); local
    [all...]
  /packages/experimental/DreamTheater/src/com/android/dreamtheater/
BouncyDroid.java 231 World.Vec finger = mFingers.get(mGrabbedPointer);
232 if (finger == null) {
237 World.Vec newPos = finger.add(mGrabSpot);
245 World.Vec finger = mFingers.get(i);
246 World.Vec springForce = finger.sub(mBody.p);
252 mGrabSpot = mBody.p.sub(finger);
  /device/generic/goldfish/fingerprint/
fingerprint.c 325 // for a successful authentication with that finger.
427 message.data.enumerated.finger.gid = qdev->group_id;
431 message.data.enumerated.finger.fid = 0;
440 message.data.enumerated.finger.fid = qdev->listener.fingerid[i];
482 msg.data.removed.finger.fid = theFid;
483 msg.data.removed.finger.gid = qdev->group_id;
497 msg.data.removed.finger.fid = 0;
498 msg.data.removed.finger.gid = qdev->group_id;
502 // Look for this finger ID in our table.
519 msg.data.removed.finger.fid = 0
    [all...]
  /external/python/cpython3/Include/
setobject.h 61 Py_ssize_t finger; /* Search finger for pop() */ member in struct:__anon33189
  /art/runtime/gc/accounting/
space_bitmap.h 43 typedef void ScanCallback(mirror::Object* obj, void* finger, void* arg);
  /external/walt/
README.md 13 * [Tap latency](docs/TapLatency.md) - time from the moment a finger-like probe touches down (or up) on the screen
  /external/dnsmasq/src/
forward.c 913 static int finger = 0; local
933 int j = (i+finger) % RANDOM_SOCKS;
938 finger = j;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Cookie.py 93 >>> C.load("chips=ahoy; vienna=finger")
95 'Set-Cookie: chips=ahoy\r\nSet-Cookie: vienna=finger'
  /external/python/cpython2/Lib/
Cookie.py 90 >>> C.load("chips=ahoy; vienna=finger")
92 'Set-Cookie: chips=ahoy\r\nSet-Cookie: vienna=finger'
  /external/python/cpython3/Lib/http/
cookies.py 81 >>> C.load("chips=ahoy; vienna=finger")
83 'Set-Cookie: chips=ahoy\r\nSet-Cookie: vienna=finger'
  /prebuilts/gdb/darwin-x86/lib/python2.7/
Cookie.py 93 >>> C.load("chips=ahoy; vienna=finger")
95 'Set-Cookie: chips=ahoy\r\nSet-Cookie: vienna=finger'

Completed in 501 milliseconds

1 2