HomeSort by relevance Sort by last modified time
    Searched refs:pin (Results 26 - 50 of 159) sorted by null

12 3 4 5 6 7

  /external/chromium/chrome/browser/sessions/
tab_restore_service_delegate.h 45 bool pin,
  /external/chromium/chrome/browser/ui/
browser_tab_restore_service_delegate.h 42 bool pin,
browser_tab_restore_service_delegate.cc 46 bool pin,
50 extension_app_id, select, pin,
  /external/wpa_supplicant_8/wpa_supplicant/
ap.h 21 const char *pin, char *buf, size_t buflen,
27 int wpas_wps_ap_pin_set(struct wpa_supplicant *wpa_s, const char *pin,
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
IccCard.java 76 * Supply the ICC PIN to the ICC
86 * If the supplied PIN is incorrect:
93 public void supplyPin (String pin, Message onComplete);
113 public void supplyNetworkDepersonalization (String pin, Message onComplete);
116 * Check whether ICC pin lock is enabled
117 * This is a sync call which returns the cached pin enabled state
126 * This is a sync call which returns the cached pin enabled state
134 * Set the ICC pin lock enabled or disabled
138 * @param password needed to change the ICC pin state, aka. Pin1
162 * Change the ICC password used in ICC pin loc
    [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;
  /external/wpa_supplicant_8/wpa_supplicant/dbus/
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...]
  /frameworks/rs/cpu_ref/
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);
  /external/openssh/
ssh-pkcs11.c 239 char *pin, prompt[1024]; local
259 error("need pin");
262 snprintf(prompt, sizeof(prompt), "Enter PIN for '%s': ",
264 pin = read_passphrase(prompt, RP_ALLOW_EOF);
265 if (pin == NULL)
267 if ((rv = f->C_Login(si->session, CKU_USER, pin, strlen(pin)))
269 xfree(pin);
273 xfree(pin);
347 * if pin == NULL we delay login until key us
    [all...]
ssh-pkcs11-helper.c 116 char *name, *pin; local
125 pin = get_string(NULL);
126 if ((nkeys = pkcs11_add_provider(name, pin, &keys)) > 0) {
140 xfree(pin);
149 char *name, *pin; local
154 pin = get_string(NULL);
160 xfree(pin);
  /frameworks/base/media/java/android/media/
Metadata.java 383 final int pin = parcel.dataPosition(); // to roll back in case of errors. local
388 Log.e(TAG, "Bad size " + size + " avail " + parcel.dataAvail() + " position " + pin);
389 parcel.setDataPosition(pin);
397 parcel.setDataPosition(pin);
403 parcel.setDataPosition(pin);
  /external/chromium/chrome/browser/resources/ntp/
most_visited.css 111 .edit-bar > .pin,
119 .edit-bar > .pin {
123 .edit-bar > .pin:hover {
127 .edit-bar > .pin:active {
131 .pinned .edit-bar > .pin {
135 .pinned .edit-bar > .pin:hover {
139 .pinned .edit-bar > .pin:active {
  /external/wpa_supplicant_8/src/wps/
wps_common.c 202 * wps_pin_checksum - Compute PIN checksum
203 * @pin: Seven digit PIN (i.e., eight digit PIN without the checksum digit)
206 unsigned int wps_pin_checksum(unsigned int pin)
209 while (pin) {
210 accum += 3 * (pin % 10);
211 pin /= 10;
212 accum += pin % 10;
213 pin /= 10
    [all...]
wps_registrar.c 80 u8 *pin; member in struct:wps_uuid_pin
90 static void wps_free_pin(struct wps_uuid_pin *pin)
92 os_free(pin->pin);
93 os_free(pin);
97 static void wps_remove_pin(struct wps_uuid_pin *pin)
99 dl_list_del(&pin->list);
100 wps_free_pin(pin);
106 struct wps_uuid_pin *pin, *prev; local
107 dl_list_for_each_safe(pin, prev, pins, struct wps_uuid_pin, list
706 struct wps_uuid_pin *pin; local
802 struct wps_uuid_pin *pin, *prev; local
829 struct wps_uuid_pin *pin, *prev; local
857 struct wps_uuid_pin *pin, *prev; local
876 struct wps_uuid_pin *pin, *found = NULL; local
934 struct wps_uuid_pin *pin; local
1346 const u8 *pin; local
    [all...]
  /frameworks/base/core/tests/bluetoothtests/src/android/bluetooth/
BluetoothTestRunner.java 48 * [-e pair_pin <pin>] \
183 byte[] pin = BluetoothDevice.convertPinToBytes(val);
184 if (pin != null) {
185 sDevicePairPin = pin;
  /frameworks/base/core/java/android/bluetooth/
BluetoothDevice.java 390 * not respond to pin request in time
446 * The user will be prompted to enter a pin
477 * The user will be prompted to enter the PIN displayed on remote device.
    [all...]
  /external/skia/legacy/src/effects/
SkColorMatrixFilter.cpp 205 static int32_t pin(int32_t value, int32_t max) { function
268 r = pin(result[0], SK_R32_MASK);
269 g = pin(result[1], SK_G32_MASK);
270 b = pin(result[2], SK_B32_MASK);
271 a = pin(result[3], SK_A32_MASK);
302 r = pin(result[0], SK_R32_MASK);
303 g = pin(result[1], SK_G32_MASK);
304 b = pin(result[2], SK_B32_MASK);
  /libcore/luni/src/test/java/libcore/java/util/zip/
DeflaterOutputStreamTest.java 71 PipedInputStream pin = new PipedInputStream(pout); local
85 return new InflaterInputStream(pin);
  /external/arduino/hardware/arduino/cores/arduino/
WProgram.h 22 unsigned long pulseIn(uint8_t pin, uint8_t state, unsigned long timeout = 1000000L);
  /external/kernel-headers/original/asm-x86/
io_apic_32.h 145 extern int io_apic_set_pci_routing (int ioapic, int pin, int irq, int edge_level, int active_high_low);
  /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/src/eap_peer/
eap_config.h 366 * EAP-WSC (WPS) uses following options: pin=Device_Password and
391 * pin - PIN for USIM, GSM SIM, and smartcards
393 * This field is used to configure PIN for SIM and smartcards for
399 char *pin; member in struct:eap_peer_config
433 * pin2 - PIN for USIM, GSM SIM, and smartcards (Phase 2)
435 * This field is used to configure PIN for SIM and smartcards for
539 * pending_req_pin - Whether there is a pending PIN request

Completed in 718 milliseconds

12 3 4 5 6 7