HomeSort by relevance Sort by last modified time
    Searched defs:pin (Results 1 - 25 of 80) sorted by null

1 2 3 4

  /external/skia/src/utils/android/
ashmem.c 69 struct ashmem_pin pin = { offset, len }; local
70 return ioctl(fd, ASHMEM_PIN, &pin);
75 struct ashmem_pin pin = { offset, len }; local
76 return ioctl(fd, ASHMEM_UNPIN, &pin);
  /external/wpa_supplicant_8/wpa_supplicant/dbus/
dbus_old_handlers_wps.c 60 * wpas_dbus_iface_wps_pin - Establish the PIN number of the enrollee
73 char *pin = NULL; local
78 DBUS_TYPE_STRING, &pin, DBUS_TYPE_INVALID))
90 if (os_strlen(pin) > 0)
91 ret = wpas_wps_start_pin(wpa_s, _bssid, pin, 0,
100 "Could not init PIN");
108 dbus_message_append_args(reply, DBUS_TYPE_STRING, &pin,
121 * wpas_dbus_iface_wps_reg - Request credentials using the PIN of the AP
133 char *pin = NULL; local
138 DBUS_TYPE_STRING, &pin, DBUS_TYPE_INVALID)
    [all...]
dbus_new_handlers_wps.c 26 int type; /* 0 - not set, 1 - pin, 2 - pbc */
28 char *pin; member in struct:wps_start_params
82 if (os_strcmp(val, "pin") == 0)
137 wpa_printf(MSG_DEBUG, "dbus: WPS.Start - Wrong Pin type, "
140 "Pin must be a string");
143 dbus_message_iter_get_basic(&variant_iter, &params->pin);
197 else if (os_strcmp(key, "Pin") == 0)
220 * (pin or push button) and optionally pin and bssid. Returned message
221 * has a dictionary argument which may contain newly generated pin (optional)
    [all...]
  /libcore/luni/src/test/java/libcore/java/io/
InputStreamReaderTest.java 32 PipedInputStream pin = new PipedInputStream(); local
33 PipedOutputStream pos = new PipedOutputStream(pin);
36 InputStreamReader reader = new InputStreamReader(pin);
  /system/core/libcutils/
ashmem-dev.c 77 struct ashmem_pin pin = { offset, len }; local
78 return ioctl(fd, ASHMEM_PIN, &pin);
83 struct ashmem_pin pin = { offset, len }; local
84 return ioctl(fd, ASHMEM_UNPIN, &pin);
  /external/skia/legacy/src/core/
SkDeviceProfile.cpp 10 static float pin(float value, float min, float max) { function
21 fGammaExponent = pin(gammaExp, 0, 10);
22 fContrastScale = pin(contrast, 0, 1);
  /external/skia/src/core/
SkDeviceProfile.cpp 18 static float pin(float value, float min, float max) { function
29 fGammaExponent = pin(gammaExp, 0, 10);
30 fContrastScale = pin(contrast, 0, 1);
  /frameworks/base/wifi/java/android/net/wifi/p2p/
WifiP2pProvDiscEvent.java 44 public String pin; field in class:WifiP2pProvDiscEvent
55 * P2P-PROV-DISC-ENTER-PIN 42:fc:89:e1:e2:27
56 * P2P-PROV-DISC-SHOW-PIN 42:fc:89:e1:e2:27 44490607
70 else if (tokens[0].endsWith("ENTER-PIN")) event = ENTER_PIN;
71 else if (tokens[0].endsWith("SHOW-PIN")) event = SHOW_PIN;
79 pin = tokens[2];
87 sbuf.append("\n pin: ").append(pin);
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
CertPinManager.java 77 // return its result or false if there's no pin
85 // reread the pin file
92 PinListEntry pin = new PinListEntry(entry, certStore); local
93 entries.put(pin.getCommonName(), pin); local
95 log("Pinlist contains a malformed pin: " + entry, e);
114 // there's no pin list, all certs are unpinned
118 throw new PinManagerException("Unexpected error reading pin list; failing.", e);
  /frameworks/base/wifi/java/android/net/wifi/
WpsInfo.java 33 /** Display pin method configuration - pin is generated and displayed on device */
35 /** Keypad pin method configuration - pin is entered on device */
37 /** Label pin method configuration - pin is labelled on device */
48 /** Passed with pin method configuration */
49 public String pin; field in class:WpsInfo
54 pin = null;
63 sbuf.append(" pin: ").append(pin)
    [all...]
WpsResult.java 36 public String pin; field in class:WpsResult
40 pin = null;
45 pin = null;
52 sbuf.append(" pin: ").append(pin);
66 pin = source.pin;
73 dest.writeString(pin);
82 result.pin = in.readString();
  /external/skia/legacy/src/animator/
SkDrawGradient.cpp 25 SkScalar pin = SkScalarPin(x, 0, SK_Scalar1); local
27 return (int) (pin * 65535.0f);
29 return pin - (pin >= 32768);
  /external/skia/legacy/src/ports/
SkImageRef_ashmem.cpp 162 // fast case: check if we can just pin and get the cached data
166 int pin = ashmem_pin_region(fRec.fFD, 0, 0); local
168 if (ASHMEM_NOT_PURGED == pin) { // yea, fast case!
171 } else if (ASHMEM_WAS_PURGED == pin) {
183 SkDebugf("===== ashmem pin_region(%d) returned %d\n", fRec.fFD, pin);
  /external/skia/src/animator/
SkDrawGradient.cpp 25 SkScalar pin = SkScalarPin(x, 0, SK_Scalar1); local
27 return (int) (pin * 65535.0f);
29 return pin - (pin >= 32768);
  /external/skia/src/images/
SkImageRef_ashmem.cpp 163 // fast case: check if we can just pin and get the cached data
167 int pin = ashmem_pin_region(fRec.fFD, 0, 0); local
169 if (ASHMEM_NOT_PURGED == pin) { // yea, fast case!
172 } else if (ASHMEM_WAS_PURGED == pin) {
184 SkDebugf("===== ashmem pin_region(%d) returned %d\n", fRec.fFD, pin);
  /external/wpa_supplicant_8/wpa_supplicant/examples/p2p/
p2p_connect.py 19 print " -a <addr> [-p <pin>] [-g <go_intent>] \ "
25 print " -p = pin number (8 digits)"
66 global pin
79 pin,wps_method,go_intent):
86 self.pin = pin
155 # Display requires a pin, and a go intent of 15
157 if (self.pin != None):
158 self.p2p_connect_arguements.update({'pin':self.pin})
228 pin = None variable in class:P2P_Connect
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/x11/
SDL_x11mouse.c 197 char *mouse_param, *mouse_param_buf, *pin; local
208 pin = SDL_strchr(mouse_param, '/');
209 if ( pin ) {
210 *pin = '\0';
213 if ( pin ) {
214 mouse_param = pin+1;
  /frameworks/rs/cpu_ref/
rsCpuIntrinsicConvolve3x3.cpp 103 const uchar *pin = (const uchar *)cp->mAlloc->mHal.drvState.lod[0].mallocPtr; local
108 const uchar4 *py0 = (const uchar4 *)(pin + stride * y2);
109 const uchar4 *py1 = (const uchar4 *)(pin + stride * p->y);
110 const uchar4 *py2 = (const uchar4 *)(pin + stride * y1);
rsCpuIntrinsicConvolve5x5.cpp 131 const uchar *pin = (const uchar *)cp->alloc->mHal.drvState.lod[0].mallocPtr; local
140 const uchar4 *py0 = (const uchar4 *)(pin + stride * y0);
141 const uchar4 *py1 = (const uchar4 *)(pin + stride * y1);
142 const uchar4 *py2 = (const uchar4 *)(pin + stride * y2);
143 const uchar4 *py3 = (const uchar4 *)(pin + stride * y3);
144 const uchar4 *py4 = (const uchar4 *)(pin + stride * y4);
  /libcore/luni/src/test/java/libcore/java/util/zip/
DeflaterOutputStreamTest.java 71 PipedInputStream pin = new PipedInputStream(pout); local
85 return new InflaterInputStream(pin);
  /cts/tests/tests/opengl/src/android/opengl/cts/
RendererOneColorBufferTest.java 213 int [] pin = pinbuffer.array(); local
214 int pixel = pin[0];
  /external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/zip/
GZIPOutputStreamTest.java 166 PipedInputStream pin = new PipedInputStream(pout); local
168 GZIPInputStream in = new GZIPInputStream(pin);
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
StreamTokenizerTest.java 180 final PipedInputStream pin = new PipedInputStream(); local
181 PipedOutputStream pout = new PipedOutputStream(pin);
183 StreamTokenizer s = new StreamTokenizer(pin);
  /external/clang/lib/StaticAnalyzer/Core/
RangeConstraintManager.cpp 149 bool pin(llvm::APSInt &Lower, llvm::APSInt &Upper) const { function in class:__anon6077::RangeSet
173 // The range starts below what's possible but ends within it. Pin.
178 // The range spans all possible values for the symbol. Pin.
197 // The range starts within what's possible but ends above it. Pin.
240 if (!pin(Lower, Upper))
  /external/openssh/
ssh-add.c 266 char *pin; local
269 pin = read_passphrase("Enter passphrase for PKCS#11: ", RP_ALLOW_STDIN);
270 if (pin == NULL)
273 if (ssh_update_card(ac, add, id, pin, lifetime, confirm)) {
282 xfree(pin);

Completed in 619 milliseconds

1 2 3 4