Searched defs:pin (Results 1 - 25 of 30) sorted by path

12

/frameworks/base/core/java/android/bluetooth/
H A DBluetoothDevice.java439 * not respond to pin request in time
495 * The user will be prompted to enter a pin or
496 * an app will enter a pin for user.
539 * The user will be prompted to enter a 16 digit pin or
540 * an app will enter a 16 digit pin for user.
1141 * Set the pin during pairing when the pairing method is {@link #PAIRING_VARIANT_PIN}
1144 * @return true pin has been set
1147 public boolean setPin(byte[] pin) { argument
1149 Log.e(TAG, "BT not enabled. Cannot set Remote Device pin");
1153 return sService.setPin(this, true, pin
1538 convertPinToBytes(String pin) argument
[all...]
/frameworks/base/core/java/android/os/
H A DMemoryFile.java54 private static native void native_pin(FileDescriptor fd, boolean pin) throws IOException; argument
/frameworks/base/core/java/android/provider/
H A DContactsContract.java8316 * @param pinnedPosition the position to pin the contact at. To unpin a contact, use
8319 public static void pin( method in class:ContactsContract.PinnedPositions
/frameworks/base/core/java/com/android/server/net/
H A DNetworkPinner.java40 * 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
/frameworks/base/core/jni/
H A Dandroid_os_MemoryFile.cpp111 static void android_os_MemoryFile_pin(JNIEnv* env, jobject clazz, jobject fileDescriptor, jboolean pin) argument
114 int result = (pin ? ashmem_pin_region(fd, 0, 0) : ashmem_unpin_region(fd, 0, 0));
/frameworks/base/core/tests/bluetoothtests/src/android/bluetooth/
H A DBluetoothTestUtils.java156 public PairReceiver(BluetoothDevice device, int passkey, byte[] pin, int expectedFlags) { argument
161 mPin = pin;
726 * @param pin The pairing pin if pairing requires a pin. Any value if not.
728 public void pair(BluetoothAdapter adapter, BluetoothDevice device, int passkey, byte[] pin) { argument
729 pairOrAcceptPair(adapter, device, passkey, pin, true);
739 * @param pin The pairing pin if pairing requires a pin
741 acceptPair(BluetoothAdapter adapter, BluetoothDevice device, int passkey, byte[] pin) argument
757 pairOrAcceptPair(BluetoothAdapter adapter, BluetoothDevice device, int passkey, byte[] pin, boolean shouldPair) argument
1392 getPairReceiver(BluetoothDevice device, int passkey, byte[] pin, int expectedFlags) argument
[all...]
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DKeyguardSimPinView.java184 protected CheckSimPin(String pin, int subId) { argument
185 mPin = pin;
H A DKeyguardSimPukView.java228 protected CheckSimPuk(String puk, String pin, int subId) { argument
230 mPin = pin;
/frameworks/base/telephony/java/android/telephony/
H A DTelephonyManager.java1787 * between states. For example, when the user inputs the SIM pin
4558 public boolean supplyPin(String pin) { argument
4562 return telephony.supplyPin(pin);
4571 public boolean supplyPuk(String puk, String pin) { argument
4575 return telephony.supplyPuk(puk, pin);
4584 public int[] supplyPinReportResult(String pin) { argument
4588 return telephony.supplyPinReportResult(pin);
4597 public int[] supplyPukReportResult(String puk, String pin) { argument
4601 return telephony.supplyPukReportResult(puk, pin);
/frameworks/base/wifi/java/android/net/wifi/
H A DWifiManager.java935 final boolean pin = disableOthers && mTargetSdkVersion < Build.VERSION_CODES.LOLLIPOP;
936 if (pin) {
941 NetworkPinner.pin(mContext, request);
951 if (pin && !success) {
1819 public abstract void onStarted(String pin); argument
1909 ((WpsCallback) listener).onStarted(result.pin);
H A DWpsInfo.java31 /** Display pin method configuration - pin is generated and displayed on device */
33 /** Keypad pin method configuration - pin is entered on device */
35 /** Label pin method configuration - pin is labelled on device */
43 /** Passed with pin method KEYPAD */
46 /** Passed with pin method configuration */
47 public String pin; field in class:WpsInfo
52 pin
[all...]
H A DWpsResult.java36 public String pin; field in class:WpsResult
40 pin = null;
45 pin = null;
52 sbuf.append(" pin: ").append(pin);
66 pin = source.pin;
73 dest.writeString(pin);
82 result.pin = in.readString();
/frameworks/base/wifi/java/android/net/wifi/p2p/
H A DWifiP2pProvDiscEvent.java40 public String pin; field in class:WifiP2pProvDiscEvent
75 pin = tokens[2];
83 sbuf.append("\n pin: ").append(pin);
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiNative.java1009 public boolean startWpsPinKeypad(String pin) { argument
1010 if (TextUtils.isEmpty(pin)) return false;
1011 return doBooleanCommand("WPS_PIN any " + pin);
1014 public boolean startWpsPinKeypad(String iface, String pin) { argument
1015 if (TextUtils.isEmpty(pin)) return false;
1017 return doBooleanCommandNative("IFNAME=" + iface + " WPS_PIN any " + pin);
1066 public boolean startWpsRegistrar(String bssid, String pin) { argument
1067 if (TextUtils.isEmpty(bssid) || TextUtils.isEmpty(pin)) return false;
1068 return doBooleanCommand("WPS_REG " + bssid + " " + pin);
1215 /* p2p_connect <peer device address> <pbc|pin|PI
[all...]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/p2p/
H A DWifiP2pServiceImpl.java1687 /* we already have the pin */
1688 if (!TextUtils.isEmpty(mSavedPeerConfig.wps.pin)) {
1704 mSavedPeerConfig.wps.pin = provDisc.pin;
1706 notifyInvitationSent(provDisc.pin, device.deviceAddress);
2091 if (wps.pin == null) {
2092 String pin = mWifiNative.startWpsPinDisplay(mGroup.getInterface());
2094 Integer.parseInt(pin);
2095 notifyInvitationSent(pin, "any");
2101 wps.pin);
2388 notifyInvitationSent(String pin, String peerAddress) argument
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DCommandsInterface.java635 void supplyIccPin(String pin, Message result); argument
654 void supplyIccPinForApp(String pin, String aid, Message result); argument
674 * Supply the PUK, new pin for the app with this AID on the ICC card
H A DIccCard.java93 public void supplyPin (String pin, Message onComplete); argument
120 public void supplyNetworkDepersonalization (String pin, Message onComplete); argument
123 * Check whether ICC pin lock is enabled
124 * This is a sync call which returns the cached pin enabled state
133 * This is a sync call which returns the cached pin enabled state
141 * Set the ICC pin lock enabled or disabled
145 * @param password needed to change the ICC pin state, aka. Pin1
169 * Change the ICC password used in ICC pin lock
H A DRIL.java877 supplyIccPin(String pin, Message result) { argument
878 supplyIccPinForApp(pin, null, result);
882 supplyIccPinForApp(String pin, String aid, Message result) { argument
890 rr.mParcel.writeString(pin);
918 supplyIccPin2(String pin, Message result) { argument
919 supplyIccPin2ForApp(pin, null, result);
923 supplyIccPin2ForApp(String pin, String aid, Message result) { argument
931 rr.mParcel.writeString(pin);
2876 // screen when the pin or puk is entered incorrectly.
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
H A DImsPhoneCommandInterface.java51 public void supplyIccPin(String pin, Message result) { argument
59 public void supplyIccPin2(String pin, Message result) { argument
521 public void supplyIccPinForApp(String pin, String aid, Message response) { argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
H A DSipCommandInterface.java50 public void supplyIccPin(String pin, Message result) { argument
58 public void supplyIccPin2(String pin, Message result) { argument
522 public void supplyIccPinForApp(String pin, String aid, Message response) { argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/test/
H A DSimulatedCommands.java167 public void supplyIccPin(String pin, Message result) { argument
177 if (pin != null && pin.equals(mPinCode)) {
322 Rlog.i(LOG_TAG, "[SimCmd] changeIccPin: pin failed!");
364 public void queryFacilityLock(String facility, String pin, argument
366 queryFacilityLockForApp(facility, pin, serviceClass, null, result);
370 public void queryFacilityLockForApp(String facility, String pin, int serviceClass, argument
396 public void setFacilityLock(String facility, boolean lockEnabled, String pin, int serviceClass, argument
398 setFacilityLockForApp(facility, lockEnabled, pin, serviceClass, null, result);
403 String pin, in
402 setFacilityLockForApp(String facility, boolean lockEnabled, String pin, int serviceClass, String appId, Message result) argument
1740 supplyIccPinForApp(String pin, String aid, Message response) argument
[all...]
H A DSimulatedCommandsVerifier.java577 public void supplyIccPin(String pin, Message result) { argument
582 public void supplyIccPinForApp(String pin, String aid, Message result) { argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/uicc/
H A DIccCardProxy.java708 public void supplyPin(String pin, Message onComplete) { argument
711 mUiccApplication.supplyPin(pin, onComplete);
764 public void supplyNetworkDepersonalization(String pin, Message onComplete) { argument
767 mUiccApplication.supplyNetworkDepersonalization(pin, onComplete);
H A DUiccCardApplication.java647 public void supplyPin (String pin, Message onComplete) { argument
649 mCi.supplyIccPinForApp(pin, mAid, mHandler.obtainMessage(EVENT_PIN1_PUK1_DONE,
697 public void supplyNetworkDepersonalization (String pin, Message onComplete) { argument
700 mCi.supplyNetworkDepersonalization(pin, onComplete);
705 * Check whether ICC pin lock is enabled
706 * This is a sync call which returns the cached pin enabled state
725 * This is a sync call which returns the cached pin enabled state
746 * Set the ICC pin lock enabled or disabled
750 * @param password needed to change the ICC pin state, aka. Pin1
801 * Change the ICC password used in ICC pin loc
[all...]
/frameworks/rs/cpu_ref/
H A DrsCpuIntrinsicBlur.cpp158 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
[all...]

Completed in 812 milliseconds

12