/external/wpa_supplicant_8/wpa_supplicant/examples/ |
wps-ap-cli | 16 echo "Enter a PIN from a station to be enrolled to the network." 17 read -p "Enrollee PIN: " pin 18 cpin=`$CLI wps_check_pin "$pin" | tail -1` 21 read -p "Do you want to use this PIN (y/n)? " resp 24 cpin=`echo "$pin" | sed "s/[^1234567890]//g"` 32 echo "Invalid PIN: $pin" 35 echo "Enabling Enrollee PIN: $cpin" 49 echo "2: Enter Enrollee PIN" [all...] |
openCryptoki.conf | 6 # Please enter User PIN: 38 # set the PIN code; leave this out to configure the PIN to be requested 40 pin="123456"
|
/frameworks/base/wifi/java/android/net/wifi/ |
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();
|
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...] |
WifiNative.java | 387 public boolean startWpsPinKeypad(String pin) { 388 if (TextUtils.isEmpty(pin)) return false; 389 return doBooleanCommand("WPS_PIN any " + pin); 392 public boolean startWpsPinKeypad(String iface, String pin) { 393 if (TextUtils.isEmpty(pin)) return false; 394 return doBooleanCommand("WPS_PIN interface=" + iface + " any " + pin); 415 public boolean startWpsRegistrar(String bssid, String pin) { 416 if (TextUtils.isEmpty(bssid) || TextUtils.isEmpty(pin)) return false; 417 return doBooleanCommand("WPS_REG " + bssid + " " + pin); 519 /* p2p_connect <peer device address> <pbc|pin|PIN#> [label|display|keypad [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);
|
/external/wpa_supplicant_8/wpa_supplicant/dbus/ |
dbus_old_handlers_wps.c | 66 * wpas_dbus_iface_wps_pin - Establish the PIN number of the enrollee 79 char *pin = NULL; local 84 DBUS_TYPE_STRING, &pin, DBUS_TYPE_INVALID)) 96 if (os_strlen(pin) > 0) 97 ret = wpas_wps_start_pin(wpa_s, _bssid, pin, 0, 106 "Could not init PIN"); 114 dbus_message_append_args(reply, DBUS_TYPE_STRING, &pin, 127 * wpas_dbus_iface_wps_reg - Request credentials using the PIN of the AP 139 char *pin = NULL; local 144 DBUS_TYPE_STRING, &pin, DBUS_TYPE_INVALID) [all...] |
/external/qemu/telephony/ |
sim_card.h | 36 extern void asimcard_set_pin( ASimCard sim, const char* pin ); 39 extern int asimcard_check_pin( ASimCard sim, const char* pin ); 40 extern int asimcard_check_puk( ASimCard sim, const char* puk, const char* pin );
|
sim_card.c | 27 char pin[ A_SIM_PIN_SIZE+1 ]; member in struct:ASimCardRec_ 45 strncpy( card->pin, "0000", sizeof(card->pin) ); 79 return sim->pin; 89 asimcard_set_pin( ASimCard sim, const char* pin ) 91 strncpy( sim->pin, pin, A_SIM_PIN_SIZE ); 104 asimcard_check_pin( ASimCard sim, const char* pin ) 110 if ( !strcmp( sim->pin, pin ) ) { [all...] |
/external/wpa_supplicant_6/wpa_supplicant/examples/ |
openCryptoki.conf | 6 # Please enter User PIN: 38 # set the PIN code; leave this out to configure the PIN to be requested 40 pin="123456"
|
/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);
|
/frameworks/base/telephony/java/com/android/internal/telephony/ |
ITelephony.aidl | 131 * Check if the SIM pin lock is enabled. 132 * @return true if the SIM pin lock is enabled. 142 * Supply a pin to unlock the SIM. Blocks until a result is determined. 143 * @param pin The pin to check. 146 boolean supplyPin(String pin); 149 * Supply puk to unlock the SIM and set SIM pin to new pin. 152 * pin The new pin to be set in SI [all...] |
/external/skia/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/valgrind/tsan/ |
tsan_pin.sh | 3 PIN_ROOT=${PIN_ROOT:-$HOME/pin} 10 PIN_BINARY=${PIN_BINARY:-pin} 14 PIN_BINARY=${PIN_BINARY:-pin.bat}
|
mk-self-contained-tsan-pin.sh | 5 # /pin/root \ 6 # /dir/where/tsan-pin-files/reside \ 9 # take Pin from here: 26 # This file is autogenerated by mk-self-contained-tsan-pin.sh. 69 tar zcvh -C $IN_DIR $TAR_EXCLUDE $IN_FILES -C $PIN_ROOT ./{extras,ia32,intel64,pin} >> $OUT
|
/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);
|
/external/wpa_supplicant_8/wpa_supplicant/ |
wps_supplicant.h | 35 const char *pin, int p2p_group, u16 dev_pw_id); 40 const char *pin, struct wps_new_ap_settings *settings); 54 const char *uuid, const char *pin); 57 const char *pin); 61 const char *pin, struct wps_new_ap_settings *settings);
|
/external/wpa_supplicant_6/wpa_supplicant/src/wps/ |
wps_common.c | 204 * wps_pin_checksum - Compute PIN checksum 205 * @pin: Seven digit PIN (i.e., eight digit PIN without the checksum digit) 208 unsigned int wps_pin_checksum(unsigned int pin) 211 while (pin) { 212 accum += 3 * (pin % 10); 213 pin /= 10; 214 accum += pin % 10; 215 pin /= 10 [all...] |
wps_registrar.c | 32 u8 *pin; member in struct:wps_uuid_pin 41 static void wps_free_pin(struct wps_uuid_pin *pin) 43 os_free(pin->pin); 44 os_free(pin); 50 struct wps_uuid_pin *pin, *prev; local 52 pin = pins; 53 while (pin) { 54 prev = pin; 55 pin = pin->next 470 struct wps_uuid_pin *pin, *prev, *del; local 504 struct wps_uuid_pin *pin, *prev; local 530 struct wps_uuid_pin *pin; local 588 struct wps_uuid_pin *pin; local 883 const u8 *pin; local [all...] |
/external/bluetooth/bluez/src/ |
event.c | 99 static size_t decode_hex(const char *pin, char *out) 103 for (i = 0; i < 16 && pin[i * 2] && pin[i * 2 + 1]; i++) 104 sscanf(&pin[i * 2], "%02hhX", &out[i]); 109 static size_t decode_pin(const char *pin, char *out) 113 if (!pin) 116 if (pin[0] == '$') { 117 len = decode_hex(&pin[1], out); 119 len = strnlen(pin, 16); 120 memcpy(out, pin, len) 159 char pin[17]; local [all...] |
/external/wpa_supplicant_6/wpa_supplicant/ |
wps_supplicant.h | 29 const char *pin); 31 const char *pin);
|
/external/wpa_supplicant_8/src/ap/ |
wps_hostapd.h | 20 const char *uuid, const char *pin, int timeout); 30 int hostapd_wps_ap_pin_set(struct hostapd_data *hapd, const char *pin,
|
/external/chromium/chrome/browser/resources/ntp4/ |
most_visited_page.css | 93 .edit-bar > .pin, 101 .edit-bar > .pin { 105 .edit-bar > .pin:hover { 109 .edit-bar > .pin:active { 113 .pinned .edit-bar > .pin { 117 .pinned .edit-bar > .pin:hover { 121 .pinned .edit-bar > .pin:active {
|
/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,
|