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

1 2 3 4

  /bionic/libc/kernel/arch-sh/asm/hd64465/
gpio.h 17 #define HD64465_GPIO_PORTPIN(port,pin) (((port)-'A')<<3|(pin))
  /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/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 26 char pin[ A_SIM_PIN_SIZE+1 ]; member in struct:ASimCardRec_
43 strncpy( card->pin, "0000", sizeof(card->pin) );
76 return sim->pin;
86 asimcard_set_pin( ASimCard sim, const char* pin )
88 strncpy( sim->pin, pin, A_SIM_PIN_SIZE );
101 asimcard_check_pin( ASimCard sim, const char* pin )
107 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);
  /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...]
wps.h 106 * pin - Enrollee Device Password (%NULL for Registrar or PBC)
108 const u8 *pin; member in struct:wps_config
111 * pin_len - Length on pin in octets
204 * pin_needed_cb - Callback for requesting a PIN
210 * PIN method and a matching PIN (Device Password) is not found in
518 const u8 *pin, size_t pin_len, int timeout);
528 unsigned int wps_pin_checksum(unsigned int pin);
529 unsigned int wps_pin_valid(unsigned int pin);
  /external/wpa_supplicant_6/wpa_supplicant/
wps_supplicant.h 29 const char *pin);
31 const char *pin);
  /libcore/luni/src/test/java/libcore/java/util/zip/
DeflaterOutputStreamTest.java 64 PipedInputStream pin = new PipedInputStream(pout); local
78 return new InflaterInputStream(pin);
  /external/skia/src/ports/
SkImageRef_ashmem.cpp 152 // fast case: check if we can just pin and get the cached data
156 int pin = ashmem_pin_region(fRec.fFD, 0, 0); local
158 if (ASHMEM_NOT_PURGED == pin) { // yea, fast case!
161 } else if (ASHMEM_WAS_PURGED == pin) {
174 fRec.fFD, pin, errno);
  /frameworks/base/telephony/java/com/android/internal/telephony/
ITelephony.aidl 130 * Check if the SIM pin lock is enabled.
131 * @return true if the SIM pin lock is enabled.
141 * Supply a pin to unlock the SIM. Blocks until a result is determined.
142 * @param pin The pin to check.
145 boolean supplyPin(String pin);
148 * Handles PIN MMI commands (PIN/PIN2/PUK/PUK2), which are initiated
  /external/qemu/distrib/sdl-1.2.12/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/base/media/java/android/media/
Metadata.java 283 final int pin = parcel.dataPosition(); // to roll back in case of errors. local
288 Log.e(TAG, "Bad size " + size + " avail " + parcel.dataAvail() + " position " + pin);
289 parcel.setDataPosition(pin);
297 parcel.setDataPosition(pin);
303 parcel.setDataPosition(pin);
  /packages/apps/Settings/src/com/android/settings/
ChooseLockPassword.java 200 * Validates PIN and returns a message to display if PIN fails test.
256 final String pin = mPasswordEntry.getText().toString(); local
257 if (TextUtils.isEmpty(pin)) {
262 errorMsg = validatePassword(pin);
264 mFirstPin = pin;
269 if (mFirstPin.equals(pin)) {
271 mLockPatternUtils.saveLockPassword(pin, mRequestedQuality);
IccLockSettings.java 36 * also the dialogs to change the ICC PIN. In the former case, enabling/disabling
37 * the ICC lock will prompt the user for the current PIN.
38 * In the Change PIN case, it prompts the user for old pin, new pin and new pin
49 // State when entering the old pin
51 // State when entering the new pin - first time
53 // State when entering the new pin - second time
156 // Prep for standard click on "Change PIN"
    [all...]
  /external/skia/src/effects/
SkColorMatrixFilter.cpp 196 static int32_t pin(int32_t value, int32_t max) { function
259 r = pin(result[0], SK_R32_MASK);
260 g = pin(result[1], SK_G32_MASK);
261 b = pin(result[2], SK_B32_MASK);
262 a = pin(result[3], SK_A32_MASK);
299 r = pin(result[0], SK_R32_MASK);
300 g = pin(result[1], SK_G32_MASK);
301 b = pin(result[2], SK_B32_MASK);
  /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/src/animator/
SkDrawGradient.cpp 33 SkScalar pin = SkScalarPin(x, 0, SK_Scalar1); local
35 return (int) (pin * 65535.0f);
37 return pin - (pin >= 32768);
  /external/wpa_supplicant/
pcsc_funcs.h 48 int scard_set_pin(struct scard_data *scard, const char *pin);
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_peer/
eap_config.h 360 * EAP-WSC (WPS) uses following options: pin=Device_Password and
385 * pin - PIN for USIM, GSM SIM, and smartcards
387 * This field is used to configure PIN for SIM and smartcards for
393 char *pin; member in struct:eap_peer_config
427 * pin2 - PIN for USIM, GSM SIM, and smartcards (Phase 2)
429 * This field is used to configure PIN for SIM and smartcards for
533 * pending_req_pin - Whether there is a pending PIN request
  /external/wpa_supplicant_6/wpa_supplicant/src/utils/
pcsc_funcs.h 48 int scard_set_pin(struct scard_data *scard, const char *pin);
  /packages/apps/Phone/src/com/android/phone/
GetPin2Screen.java 50 mPin2Field = (EditText) findViewById(R.id.pin);
IccNetworkDepersonalizationPanel.java 41 * "SIM network unlock" PIN entry screen.
121 // PIN entry text field
171 String pin = mPinEntry.getText().toString();
173 if (TextUtils.isEmpty(pin)) {
177 if (DBG) log("requesting network depersonalization with code " + pin);
178 mPhone.getIccCard().supplyNetworkDepersonalization(pin,

Completed in 405 milliseconds

1 2 3 4