/libcore/luni/src/test/java/libcore/java/util/zip/ |
DeflaterOutputStreamTest.java | 74 PipedInputStream pin = new PipedInputStream(pout); local 96 return new InflaterInputStream(pin); 98 return new GZIPInputStream(pin);
|
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/dialog/ |
PinDialogFragment.java | 62 * PIN code dialog for unlock channel 67 * PIN code dialog for unlock content. 73 * PIN code dialog for change parental control settings 78 * PIN code dialog for set new PIN 82 // PIN code dialog for checking old PIN. This is intenal only. 114 public abstract void setPin(String pin); 115 public abstract boolean isPinCorrect(String pin); 151 // If PIN isn't set, user should set a PIN [all...] |
/system/connectivity/shill/cellular/ |
cellular_capability_universal_cdma.h | 64 void RequirePIN(const std::string& pin, bool require, Error* error, 66 void EnterPIN(const std::string& pin, Error* error, 69 const std::string& pin, Error* error,
|
/system/connectivity/shill/dbus/ |
chromeos_device_dbus_adaptor.h | 87 const std::string& pin, 90 const std::string& pin) override; 93 const std::string& pin) override;
|
chromeos_device_dbus_adaptor.cc | 206 DBusMethodResponsePtr<> response, const string& pin, bool require) { 211 device_->RequirePIN(pin, require, &e, callback); 216 const string& pin) { 221 device_->EnterPIN(pin, &e, callback); 227 const string& pin) { 232 device_->UnblockPIN(unblock_code, pin, &e, callback);
|
/external/wpa_supplicant_8/src/wps/ |
wps_registrar.c | 82 u8 *pin; member in struct:wps_uuid_pin 92 static void wps_free_pin(struct wps_uuid_pin *pin) 94 bin_clear_free(pin->pin, pin->pin_len); 95 os_free(pin); 99 static void wps_remove_pin(struct wps_uuid_pin *pin) 101 dl_list_del(&pin->list); 102 wps_free_pin(pin); 108 struct wps_uuid_pin *pin, *prev local 713 struct wps_uuid_pin *pin; local 809 struct wps_uuid_pin *pin, *prev; local 836 struct wps_uuid_pin *pin, *prev; local 864 struct wps_uuid_pin *pin, *prev; local 883 struct wps_uuid_pin *pin, *found = NULL; local 941 struct wps_uuid_pin *pin; local 1356 const u8 *pin; local [all...] |
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...] |
wps.h | 120 * pin - Enrollee Device Password (%NULL for Registrar or PBC) 122 const u8 *pin; member in struct:wps_config 125 * pin_len - Length on pin in octets 145 * current AP settings by using AP PIN. 164 * dev_pw_id - Device Password ID for Enrollee when PIN is used 278 * pin_needed_cb - Callback for requesting a PIN 284 * PIN method and a matching PIN (Device Password) is not found in 295 * @dev_pw: Device Password (PIN) used during registration 314 * changes (e.g., a new PIN becomes available or PBC is invoked). Thi [all...] |
/hardware/bsp/intel/peripheral/libupm/src/grovespeaker/ |
grovespeaker.cxx | 33 GroveSpeaker::GroveSpeaker(int pin) 35 if ( !(m_gpio = mraa_gpio_init(pin)) ) 37 ": mraa_gpio_init() failed, invalid pin?");
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/zip/ |
GZIPOutputStreamTest.java | 171 PipedInputStream pin = new PipedInputStream(pout); local 173 GZIPInputStream in = new GZIPInputStream(pin);
|
/frameworks/rs/cpu_ref/ |
rsCpuIntrinsicBlur.cpp | 158 extern void rsdIntrinsicBlurVFU4_K(void *dst, const void *pin, int stride, const void *gptr, int rct, int x1, int ct); 159 extern void rsdIntrinsicBlurHFU4_K(void *dst, const void *pin, const void *gptr, int rct, int x1, int ct); 160 extern void rsdIntrinsicBlurHFU1_K(void *dst, const void *pin, const void *gptr, int rct, int x1, int ct); 292 const uchar *pin = (const uchar *)cp->mAlloc->mHal.drvState.lod[0].mallocPtr; local 301 rsdIntrinsicBlurU4_K(out, (uchar4 const *)(pin + stride * info->current.y), 320 const uchar *pi = pin + (y - cp->mIradius) * stride; 325 OneVU4(info, fout, x1, y, pin, stride, cp->mFp, cp->mIradius); 363 const uchar *pin = (const uchar *)cp->mAlloc->mHal.drvState.lod[0].mallocPtr; local 376 rsdIntrinsicBlurU1_K(out, pin + stride * info->current.y, info->dim.x, info->dim.y, 386 const uchar *pi = pin + (y - cp->mIradius) * stride [all...] |
/external/wpa_supplicant_8/src/eap_peer/ |
eap_config.h | 419 * EAP-WSC (WPS) uses following options: pin=Device_Password and 456 * pin - PIN for USIM, GSM SIM, and smartcards 458 * This field is used to configure PIN for SIM and smartcards for 464 char *pin; member in struct:eap_peer_config 498 * pin2 - PIN for USIM, GSM SIM, and smartcards (Phase 2) 500 * This field is used to configure PIN for SIM and smartcards for 604 * pending_req_pin - Whether there is a pending PIN request
|
eap_wsc.c | 192 pos = os_strstr(phase1, "pin="); 195 cfg.pin = (const u8 *) pos; 198 cfg.pin_len = pos - (const char *) cfg.pin; 200 os_strncmp((const char *) cfg.pin, "nfc-pw", 6) == 0) { 201 cfg.pin = NULL; 216 if (cfg.pin || id == DEV_PW_NFC_CONNECTION_HANDOVER) 220 if (cfg.pin == NULL && !cfg.pbc && !nfc) { 221 wpa_printf(MSG_INFO, "EAP-WSC: PIN or PBC not set in phase1 " 272 if (registrar && cfg.pin) { 274 cfg.pin, cfg.pin_len, 0) [all...] |
/hardware/bsp/intel/peripheral/libmraa/api/mraa/ |
gpio.h | 96 * @param pin Pin number read from the board, i.e IO3 is 3 99 mraa_gpio_context mraa_gpio_init(int pin); 102 * Initialise gpio context without any mapping to a pin 104 * @param gpiopin gpio pin as listed in SYSFS 119 * Set an interupt on pin 188 * @param owner Does this context own the pin 203 * Get a pin number of the gpio, invalid will return -1 206 * @return Pin number
|
/packages/services/Telephony/src/com/android/phone/ |
IccNetworkDepersonalizationPanel.java | 42 * "SIM network unlock" PIN entry screen. 143 // PIN entry text field 202 String pin = mPinEntry.getText().toString(); 204 if (TextUtils.isEmpty(pin)) { 208 if (DBG) log("requesting network depersonalization with code " + pin); 209 mPhone.getIccCard().supplyNetworkDepersonalization(pin,
|
/system/bt/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:__anon72295
|
/external/conscrypt/src/test/java/org/conscrypt/ |
TrustManagerImplTest.java | 180 private TrustManagerImpl trustManager(X509Certificate ca, String hostname, X509Certificate pin) 182 // build the cert pin manager 183 CertPinManager cm = certManager(hostname, pin); 192 X509Certificate pin) throws Exception { 193 // build the cert pin manager 194 CertPinManager cm = certManager(hostname, pin); 213 private CertPinManager certManager(String hostname, X509Certificate pin) throws Exception { 215 if (pin != null) { 216 pinString = hostname + "=true|" + getFingerprint(pin);
|
/external/autotest/server/cros/bluetooth/ |
bluetooth_device.py | 250 def pair_legacy_device(self, address, pin, timeout): 251 """Pairs a device with a given pin code. 253 Registers an agent who handles pin code request and 254 pairs a device with known pin code. 257 @param pin: The pin code of the device to pair. 263 return self._proxy.pair_legacy_device(address, pin, timeout)
|
/external/wpa_supplicant_8/wpa_supplicant/ |
ap.h | 21 const char *pin, char *buf, size_t buflen, 27 int wpas_wps_ap_pin_set(struct wpa_supplicant *wpa_s, const char *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));
|
/system/tpm/trunks/ftdi/ |
mpsse.c | 277 /* During reads and writes the chip select pin is brought low */ 306 /* Keep the clock low while the CS pin is brought high to ensure we 323 * high when we set the CS pin high to prevent 326 * after the CS pin goes high. 376 /* Set the idle pin states */ 553 * Sets the idle state of the chip select pin. CS idles high by default. 606 /* Set the default pin states while the clock is low since this is an I2C 1013 * Sets the specified pin high. 1016 * @pin - Pin number to set high [all...] |
/external/libxml2/ |
regressions.py | 153 pin, pout, perr = os.popen3(cmd) 156 pin.writelines(infile.readlines()) 158 pin.close() 197 pin.close()
|
/frameworks/base/core/java/com/android/server/net/ |
NetworkPinner.java | 40 * This should maintain behaviour that's compatible with L, which would pin the whole system to 117 public static void pin(Context context, NetworkRequest request) { method in class:NetworkPinner
|
/external/webrtc/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] -
|
/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());
|