HomeSort by relevance Sort by last modified time
    Searched refs:pin (Results 76 - 100 of 222) sorted by null

1 2 34 5 6 7 8 9

  /external/bluetooth/bluedroid/embdrv/sbc/decoder/include/
oi_bt_spec.h 164 /** amount of space allocated for a PIN (personal indentification number) in bytes */
167 /** data type for a PIN (PINs are treated as strings, so endianness does not apply.) */
169 OI_UINT8 pin[OI_BT_PIN_CODE_SIZE] ; /**< PIN represented as an array of 8-bit values */ member in struct:__anon5726
  /external/chromium_org/chrome/browser/sessions/
tab_restore_service_delegate.h 57 bool pin,
  /external/chromium_org/chrome/browser/ui/
browser_tab_restore_service_delegate.h 39 bool pin,
  /external/chromium_org/media/video/capture/win/
filter_base_win.h 29 // Returns the IPin interface pin no index.
40 STDMETHOD(FindPin)(LPCWSTR id, IPin** pin);
pin_base_win.cc 16 explicit TypeEnumerator(PinBase* pin)
17 : pin_(pin),
68 // Get the media type from the pin.
126 // Called on an output pin to and establish a
141 // Called from an output pin on an input pin to and establish a
162 STDMETHODIMP PinBase::ConnectedTo(IPin** pin) {
163 *pin = connected_pin_;
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
video_capture_device_win.h 58 static bool PinMatchesCategory(IPin* pin, REFGUID category);
  /external/wpa_supplicant_8/src/eap_peer/
eap_config.h 392 * EAP-WSC (WPS) uses following options: pin=Device_Password and
417 * pin - PIN for USIM, GSM SIM, and smartcards
419 * This field is used to configure PIN for SIM and smartcards for
425 char *pin; member in struct:eap_peer_config
459 * pin2 - PIN for USIM, GSM SIM, and smartcards (Phase 2)
461 * This field is used to configure PIN for SIM and smartcards for
565 * pending_req_pin - Whether there is a pending PIN request
eap_wsc.c 196 pos = os_strstr(phase1, "pin=");
199 cfg.pin = (const u8 *) pos;
202 cfg.pin_len = pos - (const char *) cfg.pin;
204 os_strncmp((const char *) cfg.pin, "nfc-pw", 6) == 0) {
205 cfg.pin = NULL;
220 if (cfg.pin || id == DEV_PW_NFC_CONNECTION_HANDOVER)
224 if (cfg.pin == NULL && !cfg.pbc && !nfc) {
225 wpa_printf(MSG_INFO, "EAP-WSC: PIN or PBC not set in phase1 "
276 if (registrar && cfg.pin) {
278 cfg.pin, cfg.pin_len, 0)
    [all...]
  /packages/services/Telephony/src/com/android/phone/
IccNetworkDepersonalizationPanel.java 40 * "SIM network unlock" PIN entry screen.
120 // PIN entry text field
170 String pin = mPinEntry.getText().toString();
172 if (TextUtils.isEmpty(pin)) {
176 if (DBG) log("requesting network depersonalization with code " + pin);
177 mPhone.getIccCard().supplyNetworkDepersonalization(pin,
GetPin2Screen.java 49 mPin2Field = (EditText) findViewById(R.id.pin);
  /external/conscrypt/src/test/java/org/conscrypt/
TrustManagerImplTest.java 183 private TrustManagerImpl trustManager(X509Certificate ca, String hostname, X509Certificate pin)
185 // build the cert pin manager
186 CertPinManager cm = certManager(hostname, pin);
195 X509Certificate pin) throws Exception {
196 // build the cert pin manager
197 CertPinManager cm = certManager(hostname, pin);
216 private CertPinManager certManager(String hostname, X509Certificate pin) throws Exception {
218 if (pin != null) {
219 pinString = hostname + "=true|" + getFingerprint(pin);
  /external/chromium_org/remoting/webapp/
client_screen.js 238 * Shows PIN entry screen localized to include the host name, and registers
268 var pinForm = document.getElementById('pin-form');
270 var pinCancel = document.getElementById('cancel-pin-entry-button');
272 var rememberPin = document.getElementById('remember-pin');
274 var rememberPinCheckbox = document.getElementById('remember-pin-checkbox');
286 var pinField = document.getElementById('pin-entry');
287 var pin = pinField.value;
295 document.getElementById('pin-connect-button').focus();
298 onPinFetched(pin);
310 var message = document.getElementById('pin-message')
    [all...]
  /frameworks/base/core/java/android/bluetooth/
BluetoothDevice.java 414 * not respond to pin request in time
470 * The user will be prompted to enter a pin or
471 * an app will enter a pin for user.
501 * The user will be prompted to enter the PIN displayed on remote device.
    [all...]
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
WifiNative.java 654 public boolean startWpsPinKeypad(String pin) {
655 if (TextUtils.isEmpty(pin)) return false;
656 return doBooleanCommand("WPS_PIN any " + pin);
659 public boolean startWpsPinKeypad(String iface, String pin) {
660 if (TextUtils.isEmpty(pin)) return false;
662 return doBooleanCommandNative("IFNAME=" + iface + " WPS_PIN any " + pin);
700 public boolean startWpsRegistrar(String bssid, String pin) {
701 if (TextUtils.isEmpty(bssid) || TextUtils.isEmpty(pin)) return false;
702 return doBooleanCommand("WPS_REG " + bssid + " " + pin);
847 /* p2p_connect <peer device address> <pbc|pin|PIN#> [label|display|keypad
    [all...]
  /external/chromium_org/third_party/skia/src/effects/
SkColorMatrixFilter.cpp 200 static int32_t pin(int32_t value, int32_t max) { function
260 r = pin(result[0], SK_R32_MASK);
261 g = pin(result[1], SK_G32_MASK);
262 b = pin(result[2], SK_B32_MASK);
263 a = pin(result[3], SK_A32_MASK);
294 r = pin(result[0], SK_R32_MASK);
295 g = pin(result[1], SK_G32_MASK);
296 b = pin(result[2], SK_B32_MASK);
382 // We pin the color to [0,1]. This would happen to the *final* color output from the frag
383 // shader but currently the effect does not pin its own output. So in the case of over
    [all...]
  /external/skia/src/effects/
SkColorMatrixFilter.cpp 200 static int32_t pin(int32_t value, int32_t max) { function
260 r = pin(result[0], SK_R32_MASK);
261 g = pin(result[1], SK_G32_MASK);
262 b = pin(result[2], SK_B32_MASK);
263 a = pin(result[3], SK_A32_MASK);
294 r = pin(result[0], SK_R32_MASK);
295 g = pin(result[1], SK_G32_MASK);
296 b = pin(result[2], SK_B32_MASK);
382 // We pin the color to [0,1]. This would happen to the *final* color output from the frag
383 // shader but currently the effect does not pin its own output. So in the case of over
    [all...]
  /frameworks/base/core/java/android/os/
IUserManager.aidl 51 int checkRestrictionsChallenge(in String pin);
  /frameworks/base/core/jni/
android_os_MemoryFile.cpp 111 static void android_os_MemoryFile_pin(JNIEnv* env, jobject clazz, jobject fileDescriptor, jboolean pin)
114 int result = (pin ? ashmem_pin_region(fd, 0, 0) : ashmem_unpin_region(fd, 0, 0));
  /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()
  /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...]
  /external/chromium_org/third_party/webrtc/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] -
  /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] -
  /external/wpa_supplicant_8/src/wps/
wps_common.c 205 * wps_pin_checksum - Compute PIN checksum
206 * @pin: Seven digit PIN (i.e., eight digit PIN without the checksum digit)
209 unsigned int wps_pin_checksum(unsigned int pin)
212 while (pin) {
213 accum += 3 * (pin % 10);
214 pin /= 10;
215 accum += pin % 10;
216 pin /= 10
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
PipedInputStreamTest.java 117 PipedInputStream pin = new PipedInputStream(); local
118 PipedOutputStream pout = new PipedOutputStream(pin);
125 assertEquals("Incorrect available count", 1024, pin.available());

Completed in 1161 milliseconds

1 2 34 5 6 7 8 9