HomeSort by relevance Sort by last modified time
    Searched refs:pin (Results 51 - 75 of 159) sorted by null

1 23 4 5 6 7

  /external/wpa_supplicant_8/src/utils/
pcsc_funcs.h 23 int scard_set_pin(struct scard_data *scard, const char *pin);
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/rs/cpu_ref/
rsCpuIntrinsicConvolve3x3.cpp 103 const uchar *pin = (const uchar *)cp->mAlloc->mHal.drvState.lod[0].mallocPtr; local
108 const uchar4 *py0 = (const uchar4 *)(pin + stride * y2);
109 const uchar4 *py1 = (const uchar4 *)(pin + stride * p->y);
110 const uchar4 *py2 = (const uchar4 *)(pin + stride * y1);
rsCpuIntrinsicBlur.cpp 150 extern "C" void rsdIntrinsicBlurVFU4_K(void *dst, const void *pin, int stride, const void *gptr, int rct, int x1, int ct);
151 extern "C" void rsdIntrinsicBlurHFU4_K(void *dst, const void *pin, const void *gptr, int rct, int x1, int ct);
152 extern "C" void rsdIntrinsicBlurHFU1_K(void *dst, const void *pin, const void *gptr, int rct, int x1, int ct);
283 const uchar *pin = (const uchar *)cp->mAlloc->mHal.drvState.lod[0].mallocPtr; local
300 const uchar *pi = pin + (y - cp->mIradius) * stride;
304 OneVU4(p, fout, x1, y, pin, stride, cp->mFp, cp->mIradius);
340 const uchar *pin = (const uchar *)cp->mAlloc->mHal.drvState.lod[0].mallocPtr; local
350 const uchar *pi = pin + (y - cp->mIradius) * stride;
354 OneVU1(p, fout, x1, y, pin, stride, cp->mFp, cp->mIradius);
  /packages/apps/Phone/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,
FdnSetting.java 50 * The first is used for toggling FDN enable, the second for the PIN change.
56 // We only care about the pin preferences here, the manage FDN contacts
84 // size limits for the pin.
108 // validate the pin first, before submitting it to the RIL for FDN enable.
118 // throw up error if the pin is invalid.
126 * Attempt to change the pin.
144 // 1. Enter old pin
145 // 2. Enter new pin
146 // 3. Re-Enter new pin
156 // if the pin is not valid, display a message and reset the state
    [all...]
GetPin2Screen.java 48 mPin2Field = (EditText) findViewById(R.id.pin);
  /external/skia/src/effects/
SkColorFilters.cpp 228 static inline unsigned pin(unsigned value, unsigned max) { function
254 unsigned r = pin(SkAlphaMul(SkGetPackedR32(c), scaleR) + SkAlphaMul(addR, scaleA), a);
255 unsigned g = pin(SkAlphaMul(SkGetPackedG32(c), scaleG) + SkAlphaMul(addG, scaleA), a);
256 unsigned b = pin(SkAlphaMul(SkGetPackedB32(c), scaleB) + SkAlphaMul(addB, scaleA), a);
299 unsigned r = pin(SkGetPackedR32(c) + SkAlphaMul(addR, scaleA), a);
300 unsigned g = pin(SkGetPackedG32(c) + SkAlphaMul(addG, scaleA), a);
301 unsigned b = pin(SkGetPackedB32(c) + SkAlphaMul(addB, scaleA), a);
SkColorMatrixFilter.cpp 196 static int32_t pin(int32_t value, int32_t max) { function
256 r = pin(result[0], SK_R32_MASK);
257 g = pin(result[1], SK_G32_MASK);
258 b = pin(result[2], SK_B32_MASK);
259 a = pin(result[3], SK_A32_MASK);
290 r = pin(result[0], SK_R32_MASK);
291 g = pin(result[1], SK_G32_MASK);
292 b = pin(result[2], SK_B32_MASK);
377 // We pin the color to [0,1]. This would happen to the *final* color output from the frag
378 // shader but currently the effect does not pin its own output. So in the case of over
    [all...]
  /external/wpa_supplicant_8/src/wps/
wps.h 121 * pin - Enrollee Device Password (%NULL for Registrar or PBC)
123 const u8 *pin; member in struct:wps_config
126 * pin_len - Length on pin in octets
146 * current AP settings by using AP PIN.
165 * dev_pw_id - Device Password ID for Enrollee when PIN is used
273 * pin_needed_cb - Callback for requesting a PIN
279 * PIN method and a matching PIN (Device Password) is not found in
290 * @dev_pw: Device Password (PIN) used during registration
309 * changes (e.g., a new PIN becomes available or PBC is invoked). Thi
    [all...]
  /external/openssh/
ssh-add.c 266 char *pin; local
269 pin = read_passphrase("Enter passphrase for PKCS#11: ", RP_ALLOW_STDIN);
270 if (pin == NULL)
273 if (ssh_update_card(ac, add, id, pin, lifetime, confirm)) {
282 xfree(pin);
  /libcore/luni/src/test/java/org/apache/harmony/xnet/provider/jsse/
TrustManagerImplTest.java 173 private TrustManagerImpl trustManager(X509Certificate ca, String hostname, X509Certificate pin)
175 // build the cert pin manager
176 CertPinManager cm = certManager(hostname, pin);
183 private CertPinManager certManager(String hostname, X509Certificate pin) throws Exception {
185 if (pin != null) {
186 pinString = hostname + "=true|" + getFingerprint(pin);
  /external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/zip/
GZIPOutputStreamTest.java 166 PipedInputStream pin = new PipedInputStream(pout); local
168 GZIPInputStream in = new GZIPInputStream(pin);
  /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));
  /frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
KeyguardSimPinView.java 39 * Displays a PIN pad for unlocking.
80 // The delete button is of the PIN keyboard itself in some (e.g. tablet) layouts,
130 protected CheckSimPin(String pin) {
131 mPin = pin;
  /external/quake/quake/src/QW/client/
model.c 1232 void * Mod_LoadAliasFrame (void * pin, int *pframeindex, int numv,
1239 pdaliasframe = (daliasframe_t *)pin;
1280 void * Mod_LoadAliasGroup (void * pin, int *pframeindex, int numv,
1290 pingroup = (daliasgroup_t *)pin;
1345 void * Mod_LoadAliasSkin (void * pin, int *pskinindex, int skinsize,
1353 pinskin = (byte *)pin;
1384 void * Mod_LoadAliasSkinGroup (void * pin, int *pskinindex, int skinsize,
1394 pinskingroup = (daliasskingroup_t *)pin;
1805 dsprite_t *pin; local
    [all...]
  /external/quake/quake/src/WinQuake/
model.cpp 1235 void * Mod_LoadAliasFrame (void * pin, int *pframeindex, int numv,
1242 pdaliasframe = (daliasframe_t *)pin;
1283 void * Mod_LoadAliasGroup (void * pin, int *pframeindex, int numv,
1293 pingroup = (daliasgroup_t *)pin;
1348 void * Mod_LoadAliasSkin (void * pin, int *pskinindex, int skinsize,
1356 pinskin = (byte *)pin;
1387 void * Mod_LoadAliasSkinGroup (void * pin, int *pskinindex, int skinsize,
1397 pinskingroup = (daliasskingroup_t *)pin;
1782 dsprite_t *pin; local
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
wpa_supplicant.conf     [all...]
  /packages/apps/Settings/src/com/android/settings/
IccLockSettings.java 40 * also the dialogs to change the ICC PIN. In the former case, enabling/disabling
41 * the ICC lock will prompt the user for the current PIN.
42 * In the Change PIN case, it prompts the user for old pin, new pin and new pin
53 // State when entering the old pin
55 // State when entering the new pin - first time
57 // State when entering the new pin - second time
69 // Save and restore inputted PIN code when configuration change
    [all...]
ConfirmLockPassword.java 149 final String pin = mPasswordEntry.getText().toString(); local
150 if (mLockPatternUtils.checkPassword(pin)) {
153 intent.putExtra(ChooseLockSettingsHelper.EXTRA_KEY_PASSWORD, pin);
  /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 181 char *pin = os_strchr(txt, ' '); local
187 if (pin == NULL)
189 *pin++ = '\0';
191 timeout_txt = os_strchr(pin, ' ');
204 return hostapd_wps_add_pin(hapd, addr, txt, pin, timeout);
211 char pin[9]; local
221 pin[len++] = *pos;
223 wpa_printf(MSG_DEBUG, "WPS: Too long PIN");
228 wpa_printf(MSG_DEBUG, "WPS: Invalid PIN length %d", (int) len);
231 pin[len] = '\0'
444 char *pin; local
    [all...]

Completed in 1220 milliseconds

1 23 4 5 6 7