HomeSort by relevance Sort by last modified time
    Searched refs:pin (Results 101 - 125 of 233) sorted by null

1 2 3 45 6 7 8 910

  /external/wpa_supplicant_8/src/eap_peer/
eap_wsc.c 193 pos = os_strstr(phase1, "pin=");
196 cfg.pin = (const u8 *) pos;
199 cfg.pin_len = pos - (const char *) cfg.pin;
201 os_strncmp((const char *) cfg.pin, "nfc-pw", 6) == 0) {
202 cfg.pin = NULL;
212 if (cfg.pin == NULL && !cfg.pbc && !nfc) {
213 wpa_printf(MSG_INFO, "EAP-WSC: PIN or PBC not set in phase1 "
220 if (pos && cfg.pin)
250 if (registrar && cfg.pin) {
252 cfg.pin, cfg.pin_len, 0)
    [all...]
  /frameworks/base/core/jni/
android_os_MemoryFile.cpp 110 static void android_os_MemoryFile_pin(JNIEnv* env, jobject clazz, jobject fileDescriptor, jboolean pin)
113 int result = (pin ? ashmem_pin_region(fd, 0, 0) : ashmem_unpin_region(fd, 0, 0));
  /external/chromium_org/media/video/capture/win/
pin_base_win.h 5 // Implement a simple base class for a DirectShow input pin. It may only be
33 // Checks if a media type is acceptable. This is called when this pin is
34 // connected to an output pin. Must return true if the media type is
42 // thread as where the pin is created.
52 STDMETHOD(ConnectedTo)(IPin** pin);
100 // owner_ is the filter owning this pin. We don't reference count it since
  /external/chromium_org/remoting/client/jni/
chromoting_jni_instance.h 55 // Provides the user's PIN and resumes the host authentication attempt. Call
56 // on the UI thread once the user has finished entering this PIN into the UI,
57 // but only after the UI has been asked to provide a PIN (via FetchSecret()).
58 void ProvideSecret(const std::string& pin, bool create_pair);
108 // Notifies the user interface that the user needs to enter a PIN. The
142 // Pass this the user's PIN once we have it. To be assigned and accessed on
  /external/chromium_org/third_party/libxml/src/
regressions.py 153 pin, pout, perr = os.popen3(cmd)
156 pin.writelines(infile.readlines())
158 pin.close()
197 pin.close()
  /external/chromium_org/third_party/skia/src/ports/
SkPurgeableMemoryBlock_mac.cpp 55 void* SkPurgeableMemoryBlock::pin(SkPurgeableMemoryBlock::PinResult* pinResult) { function in class:SkPurgeableMemoryBlock
  /external/skia/src/ports/
SkPurgeableMemoryBlock_mac.cpp 55 void* SkPurgeableMemoryBlock::pin(SkPurgeableMemoryBlock::PinResult* pinResult) { function in class:SkPurgeableMemoryBlock
  /external/wpa_supplicant_8/wpa_supplicant/
wpa_supplicant.conf     [all...]
ap.c 747 const char *pin, char *buf, size_t buflen,
755 if (pin == NULL) {
758 pin = buf;
760 ret_len = os_snprintf(buf, buflen, "%s", pin);
762 ret = hostapd_wps_add_pin(wpa_s->ap_iface->bss[0], bssid, "any", pin,
773 wpa_printf(MSG_DEBUG, "WPS: AP PIN timed out");
785 wpa_printf(MSG_DEBUG, "WPS: Enabling AP PIN (timeout=%d)", timeout);
800 wpa_printf(MSG_DEBUG, "WPS: Disabling AP PIN");
811 unsigned int pin; local
817 pin = wps_generate_pin()
    [all...]
ctrl_iface.c 691 char *pin; local
694 pin = os_strchr(cmd, ' ');
695 if (pin)
696 *pin++ = '\0';
714 if (pin) {
715 pos = os_strchr(pin, ' ');
722 return wpa_supplicant_ap_wps_pin(wpa_s, _bssid, pin,
727 if (pin) {
728 ret = wpas_wps_start_pin(wpa_s, _bssid, pin, 0,
732 ret = os_snprintf(buf, buflen, "%s", pin);
754 char pin[9]; local
1131 char *pin; local
1216 char *pin; local
1241 char *uuid = cmd, *pin, *pos; local
1260 char *uuid = cmd, *pin; local
1284 char *pin; local
3695 char *pin = NULL; local
    [all...]
  /packages/apps/Settings/src/com/android/settings/
IccLockSettings.java 41 * also the dialogs to change the ICC PIN. In the former case, enabling/disabling
42 * the ICC lock will prompt the user for the current PIN.
43 * In the Change PIN case, it prompts the user for old pin, new pin and new pin
56 // State when entering the old pin
58 // State when entering the new pin - first time
60 // State when entering the new pin - second time
72 // Save and restore inputted PIN code when configuration change
    [all...]
ConfirmLockPassword.java 156 final String pin = mPasswordEntry.getText().toString(); local
157 if (mLockPatternUtils.checkPassword(pin)) {
160 intent.putExtra(ChooseLockSettingsHelper.EXTRA_KEY_PASSWORD, pin);
ChooseLockPassword.java 298 * Validates PIN and returns a message to display if PIN fails test.
390 final String pin = mPasswordEntry.getText().toString(); local
391 if (TextUtils.isEmpty(pin)) {
396 errorMsg = validatePassword(pin);
398 mFirstPin = pin;
403 if (mFirstPin.equals(pin)) {
407 mLockPatternUtils.saveLockPassword(pin, mRequestedQuality, isFallback);
  /packages/services/Telephony/src/com/android/phone/
GetPin2Screen.java 48 mPin2Field = (EditText) findViewById(R.id.pin);
PhoneInterfaceManager.java 451 public boolean supplyPin(String pin) {
452 int [] resultArray = supplyPinReportResult(pin);
456 public boolean supplyPuk(String puk, String pin) {
457 int [] resultArray = supplyPukReportResult(puk, pin);
462 public int[] supplyPinReportResult(String pin) {
466 return checkSimPin.unlockSim(null, pin);
470 public int[] supplyPukReportResult(String puk, String pin) {
474 return checkSimPuk.unlockSim(puk, pin);
536 * Use PIN or PUK to unlock SIM card
538 * If PUK is null, unlock SIM card with PIN
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
PipedInputStreamTest.java 118 PipedInputStream pin = new PipedInputStream(); local
119 PipedOutputStream pout = new PipedOutputStream(pin);
126 assertEquals("Incorrect available count", 1024 , pin.available());
  /external/webrtc/src/modules/audio_coding/codecs/isac/main/source/
filterbanks.c 83 void WebRtcIsac_SplitAndFilterFloat(float *pin, float *LP, float *HP,
101 in[k] = pin[k] + kHpStCoefInFloat[2] * prefiltdata->HPstates_float[0] +
103 ftmp = pin[k] - kHpStCoefInFloat[0] * prefiltdata->HPstates_float[0] -
  /packages/apps/Settings/src/com/android/settings/wifi/
WpsDialog.java 83 public void onStartSuccess(String pin) {
84 if (pin != null) {
86 mContext.getString(R.string.wifi_wps_onstart_pin), pin));
  /external/wpa_supplicant_8/hostapd/
ctrl_iface.c 182 char *pin = os_strchr(txt, ' '); local
188 if (pin == NULL)
190 *pin++ = '\0';
192 timeout_txt = os_strchr(pin, ' ');
205 return hostapd_wps_add_pin(hapd, addr, txt, pin, timeout);
212 char pin[9]; local
222 pin[len++] = *pos;
224 wpa_printf(MSG_DEBUG, "WPS: Too long PIN");
229 wpa_printf(MSG_DEBUG, "WPS: Invalid PIN length %d", (int) len);
232 pin[len] = '\0'
445 char *pin; local
    [all...]
  /external/wpa_supplicant_8/src/utils/
pcsc_funcs.c 250 static int scard_verify_pin(struct scard_data *scard, const char *pin);
329 wpa_hexdump(MSG_MSGDUMP, "SCARD: PIN Status Template "
494 * selected sim_type. In addition, local flag is set if a PIN is needed to
672 wpa_printf(MSG_DEBUG, "SCARD: Failed to determine whether PIN "
700 * scard_set_pin - Set PIN (CHV1/PIN1) code for accessing SIM/USIM commands
702 * @pin: PIN code as an ASCII string (e.g., "1234")
705 int scard_set_pin(struct scard_data *scard, const char *pin)
712 if (pin == NULL) {
713 wpa_printf(MSG_DEBUG, "No PIN configured for SIM
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/test/
SimulatedCommands.java 113 public void supplyIccPin(String pin, Message result) {
124 if (pin != null && pin.equals(mPinCode)) {
295 Rlog.i(LOG_TAG, "[SimCmd] changeIccPin: pin failed!");
345 public void queryFacilityLock(String facility, String pin,
347 queryFacilityLockForApp(facility, pin, serviceClass, null, result);
351 public void queryFacilityLockForApp(String facility, String pin, int serviceClass,
379 public void setFacilityLock(String facility, boolean lockEnabled, String pin, int serviceClass,
381 setFacilityLockForApp(facility, lockEnabled, pin, serviceClass, null, result);
386 String pin, int serviceClass, String appId
    [all...]
  /external/chromium/chrome/browser/ui/webui/chromeos/
sim_unlock_ui.cc 110 // for PIN input because PinRequired preference change was requested.
111 // SIM_NOT_LOCKED_CHANGE_PIN - SIM card is not locked, ask user for old PIN
112 // and new PIN to change it.
168 // Pending code input (PIN/PUK).
180 // Pass PIN/PUK code to flimflam and check status.
183 // Single handler for PIN/PUK code operations.
202 // completed (either cancelled or with entry of PIN/PUK).
221 // Type of the dialog: generic unlock/change pin/change PinRequire.
224 // New PIN value for the case when we unblock SIM card or change PIN
472 std::string pin; local
493 std::string pin; local
    [all...]
  /external/chromium_org/chromeos/dbus/
fake_shill_device_client.cc 126 const std::string& pin,
138 const std::string& pin,
150 const std::string& pin,
  /external/arduino/hardware/arduino/cores/arduino/
wiring.h 122 unsigned long pulseIn(uint8_t pin, uint8_t state, unsigned long timeout);
  /external/qemu/hw/
qdev.h 57 void qdev_connect_gpio_out(DeviceState *dev, int n, qemu_irq pin);

Completed in 929 milliseconds

1 2 3 45 6 7 8 910