/external/chromium_org/media/video/capture/win/ |
video_capture_device_win.cc | 82 // Check if a Pin matches a category. 83 bool PinMatchesCategory(IPin* pin, REFGUID category) { 84 DCHECK(pin); 87 HRESULT hr = ks_property.QueryFrom(pin); 102 IPin** pin) { 103 DCHECK(pin); 109 // Get first unconnected pin. 110 hr = pin_emum->Reset(); // set to first pin 111 while ((hr = pin_emum->Next(1, pin, NULL)) == S_OK) { 113 hr = (*pin)->QueryDirection(&this_pin_dir) [all...] |
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
|
/frameworks/rs/cpu_ref/ |
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); 342 const uchar *pin = (const uchar *)cp->mAlloc->mHal.drvState.lod[0].mallocPtr; local 352 const uchar *pi = pin + (y - cp->mIradius) * stride; 356 OneVU1(p, fout, x1, y, pin, stride, cp->mFp, cp->mIradius);
|
/external/chromium_org/remoting/webapp/ |
client_screen.js | 239 * Shows PIN entry screen localized to include the host name, and registers 274 var pinForm = document.getElementById('pin-form'); 276 var pinCancel = document.getElementById('cancel-pin-entry-button'); 278 var rememberPin = document.getElementById('remember-pin'); 280 var rememberPinCheckbox = document.getElementById('remember-pin-checkbox'); 292 var pinField = document.getElementById('pin-entry'); 293 var pin = pinField.value; 301 document.getElementById('pin-connect-button').focus(); 304 onPinFetched(pin); 316 var message = document.getElementById('pin-message') [all...] |
/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/chromium_org/third_party/skia/src/effects/ |
SkColorMatrixFilter.cpp | 197 static int32_t pin(int32_t value, int32_t max) { function 257 r = pin(result[0], SK_R32_MASK); 258 g = pin(result[1], SK_G32_MASK); 259 b = pin(result[2], SK_B32_MASK); 260 a = pin(result[3], SK_A32_MASK); 291 r = pin(result[0], SK_R32_MASK); 292 g = pin(result[1], SK_G32_MASK); 293 b = pin(result[2], SK_B32_MASK); 378 // We pin the color to [0,1]. This would happen to the *final* color output from the frag 379 // shader but currently the effect does not pin its own output. So in the case of over [all...] |
/external/chromium_org/third_party/skia/src/lazy/ |
SkPurgeableImageCache.cpp | 47 void* data = block->pin(&pinResult); 71 void* data = block->pin(&pinResult); 87 // Invalid value. Treat as a failure to pin.
|
/external/skia/src/effects/ |
SkColorMatrixFilter.cpp | 197 static int32_t pin(int32_t value, int32_t max) { function 257 r = pin(result[0], SK_R32_MASK); 258 g = pin(result[1], SK_G32_MASK); 259 b = pin(result[2], SK_B32_MASK); 260 a = pin(result[3], SK_A32_MASK); 291 r = pin(result[0], SK_R32_MASK); 292 g = pin(result[1], SK_G32_MASK); 293 b = pin(result[2], SK_B32_MASK); 378 // We pin the color to [0,1]. This would happen to the *final* color output from the frag 379 // shader but currently the effect does not pin its own output. So in the case of over [all...] |
/external/skia/src/lazy/ |
SkPurgeableImageCache.cpp | 47 void* data = block->pin(&pinResult); 71 void* data = block->pin(&pinResult); 87 // Invalid value. Treat as a failure to 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/packages/Keyguard/src/com/android/keyguard/ |
KeyguardSimPinView.java | 37 * Displays a PIN pad for unlocking. 60 // SIM PIN doesn't have a timed lockout 84 // The delete button is of the PIN keyboard itself in some (e.g. tablet) layouts, 134 protected CheckSimPin(String pin) { 135 mPin = pin;
|
/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...] |
/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 | 156 final String pin = mPasswordEntry.getText().toString(); local 157 if (mLockPatternUtils.checkPassword(pin)) { 160 intent.putExtra(ChooseLockSettingsHelper.EXTRA_KEY_PASSWORD, pin);
|
/packages/services/Telephony/src/com/android/phone/ |
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/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...] |