/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 | 407 public boolean startWpsPinKeypad(String pin) { 408 if (TextUtils.isEmpty(pin)) return false; 409 return doBooleanCommand("WPS_PIN any " + pin); 412 public boolean startWpsPinKeypad(String iface, String pin) { 413 if (TextUtils.isEmpty(pin)) return false; 414 return doBooleanCommand("WPS_PIN interface=" + iface + " any " + pin); 435 public boolean startWpsRegistrar(String bssid, String pin) { 436 if (TextUtils.isEmpty(bssid) || TextUtils.isEmpty(pin)) return false; 437 return doBooleanCommand("WPS_REG " + bssid + " " + pin); 547 /* p2p_connect <peer device address> <pbc|pin|PIN#> [label|display|keypad [all...] |
/external/arduino/hardware/arduino/cores/arduino/ |
wiring_analog.c | 35 // will connect AVCC and the AREF pin, which would cause a short if 40 int analogRead(uint8_t pin) 45 if (pin >= 54) pin -= 54; // allow for channel or pin numbers 47 if (pin >= 14) pin -= 14; // allow for channel or pin numbers 53 ADCSRB = (ADCSRB & ~(1 << MUX5)) | (((pin >> 3) & 0x01) << MUX5); 60 ADMUX = (analog_reference << 6) | (pin & 0x07) [all...] |
wiring_pulse.c | 28 /* Measures the length (in microseconds) of a pulse on the pin; state is HIGH 32 unsigned long pulseIn(uint8_t pin, uint8_t state, unsigned long timeout) 34 // cache the port and bit of the pin in order to speed up the 37 uint8_t bit = digitalPinToBitMask(pin); 38 uint8_t port = digitalPinToPort(pin);
|
wiring_digital.c | 30 void pinMode(uint8_t pin, uint8_t mode) 32 uint8_t bit = digitalPinToBitMask(pin); 33 uint8_t port = digitalPinToPort(pin); 124 void digitalWrite(uint8_t pin, uint8_t val) 126 uint8_t timer = digitalPinToTimer(pin); 127 uint8_t bit = digitalPinToBitMask(pin); 128 uint8_t port = digitalPinToPort(pin); 133 // If the pin that support PWM output, we need to turn it off 152 int digitalRead(uint8_t pin) 154 uint8_t timer = digitalPinToTimer(pin); [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 | 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...] |
/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/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);
|
/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/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/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/ |
PinListEntry.java | 31 * This class represents a single entry in the pin file. 69 // entry must have a CN, an enforcement value, and at least one pin 71 throw new PinEntryException("Received malformed pin entry"); 91 * Checks the given chain against the pin list corresponding to this entry. 93 * If the pin list does not contain the required certs and the enforcing field is true then 120 for (String pin : pins) { 121 validatePin(pin); 126 private static void validatePin(String pin) { 128 if (pin.length() != 128) { 129 throw new IllegalArgumentException("Pin is not a valid length") [all...] |
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/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/wpa_supplicant_8/src/ap/ |
wps_hostapd.h | 20 const char *uuid, const char *pin, int timeout); 29 int hostapd_wps_ap_pin_set(struct hostapd_data *hapd, const char *pin,
|
/external/wpa_supplicant_8/wpa_supplicant/ |
wps_supplicant.h | 35 const char *pin, int p2p_group, u16 dev_pw_id); 38 const char *pin, struct wps_new_ap_settings *settings); 52 const char *uuid, const char *pin); 55 const char *pin); 59 const char *pin, struct wps_new_ap_settings *settings);
|
/external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/ |
filterbanks.c | 115 void WebRtcIsacfix_SplitAndFilter1(WebRtc_Word16 *pin, 132 WebRtcIsacfix_HighpassFilterFixDec32(pin, FRAMESAMPLES, WebRtcIsacfix_kHpStCoeffInQ30, prefiltdata->HPstates_fix); 137 tempin_ch1[QLOOKAHEAD + k] = pin[1+WEBRTC_SPL_MUL_16_16(2, k)]; 141 prefiltdata->INLABUF1_fix[k]=pin[FRAMESAMPLES+1-WEBRTC_SPL_MUL_16_16(2, QLOOKAHEAD)+WEBRTC_SPL_MUL_16_16(2, k)]; 147 tempin_ch2[QLOOKAHEAD+k] = pin[WEBRTC_SPL_MUL_16_16(2, k)]; 151 prefiltdata->INLABUF2_fix[k]=pin[FRAMESAMPLES-WEBRTC_SPL_MUL_16_16(2, QLOOKAHEAD)+WEBRTC_SPL_MUL_16_16(2, k)]; 186 void WebRtcIsacfix_SplitAndFilter2(WebRtc_Word16 *pin, 202 WebRtcIsacfix_HighpassFilterFixDec32(pin, FRAMESAMPLES, WebRtcIsacfix_kHpStCoeffInQ30, prefiltdata->HPstates_fix); 207 tempin_ch1[k] = pin[1+WEBRTC_SPL_MUL_16_16(2, k)]; 213 tempin_ch2[k] = pin[WEBRTC_SPL_MUL_16_16(2, k)] [all...] |
/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 {
|