Home
last modified time | relevance | path

Searched refs:requestType (Results 1 – 13 of 13) sorted by relevance

/packages/apps/Settings/src/com/android/settings/bluetooth/
DBluetoothPermissionActivity.java63 int requestType = intent.getIntExtra(BluetoothDevice.EXTRA_ACCESS_REQUEST_TYPE,
65 if (requestType != mRequestType) return;
118 private void showDialog(String title, int requestType) in showDialog() argument
123 switch(requestType) in showDialog()
DBluetoothPermissionRequest.java196 private String getNotificationTag(int requestType) { in getNotificationTag() argument
197 if(requestType == BluetoothDevice.REQUEST_TYPE_PHONEBOOK_ACCESS) { in getNotificationTag()
/packages/apps/Camera2/src/com/android/camera/one/v2/commands/
DPreviewCommand.java43 int requestType) { in PreviewCommand() argument
46 mRequestType = requestType; in PreviewCommand()
/packages/apps/Camera2/src/com/android/camera/one/v2/core/
DTagDispatchCaptureSession.java133 public void submitRequest(List<Request> burstRequests, FrameServer.RequestType requestType) in submitRequest() argument
151 if (requestType == FrameServer.RequestType.REPEATING) { in submitRequest()
/packages/apps/Bluetooth/tests/src/com/android/bluetooth/tests/
DSapServerTest.java558 int requestType = inStream.read(); in readSapMessage() local
559 Log.i(TAG,"Received message with type: " + SapMessage.getMsgTypeName(requestType)); in readSapMessage()
560 SapMessage msg = SapMessage.readMessage(requestType, inStream); in readSapMessage()
562 if(requestType != -1) { in readSapMessage()
/packages/services/Mms/src/com/android/mms/service/
DApnSettings.java204 private static boolean isValidApnType(String types, String requestType) { in isValidApnType() argument
211 if (type.equals(requestType) || type.equals(PhoneConstants.APN_TYPE_ALL)) { in isValidApnType()
/packages/apps/Bluetooth/src/com/android/bluetooth/sap/
DSapServer.java321 int requestType = mRfcommIn.read(); in run() local
322 if(requestType == -1) { in run()
325 SapMessage msg = SapMessage.readMessage(requestType, mRfcommIn); in run()
330 switch (requestType) { in run()
DSapMessage.java355 public static SapMessage readMessage(int requestType, InputStream is) { in readMessage() argument
356 SapMessage newMessage = new SapMessage(requestType); in readMessage()
372 if(DEBUG) Log.i(TAG, "readMessage() Read message: " + getMsgTypeName(requestType)); in readMessage()
375 switch(requestType) { in readMessage()
/packages/apps/Messaging/src/android/support/v7/mms/
DDefaultApnSettingsLoader.java485 public static boolean isValidApnType(final String types, final String requestType) { in isValidApnType() argument
491 if (t.equals(requestType) || t.equals(APN_TYPE_ALL)) { in isValidApnType()
/packages/apps/Bluetooth/src/com/android/bluetooth/hfp/
DHeadsetService.java109 int requestType = intent.getIntExtra(BluetoothDevice.EXTRA_ACCESS_REQUEST_TYPE,
111 if (requestType == BluetoothDevice.REQUEST_TYPE_PHONEBOOK_ACCESS) {
/packages/apps/Messaging/src/com/android/messaging/sms/
DBugleApnSettingsLoader.java613 public static boolean isValidApnType(final String types, final String requestType) { in isValidApnType() argument
619 if (t.equals(requestType) || t.equals(APN_TYPE_ALL)) { in isValidApnType()
/packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
DBluetoothPbapService.java283 int requestType = intent.getIntExtra(BluetoothDevice.EXTRA_ACCESS_REQUEST_TYPE, in parseIntent() local
287 || (requestType != BluetoothDevice.REQUEST_TYPE_PHONEBOOK_ACCESS)) { in parseIntent()
/packages/apps/Bluetooth/src/com/android/bluetooth/map/
DBluetoothMapService.java1026 int requestType = intent.getIntExtra(BluetoothDevice.EXTRA_ACCESS_REQUEST_TYPE, in onReceive() local
1030 requestType + "isWaitingAuthorization:" + mIsWaitingAuthorization); in onReceive()
1032 || (requestType != BluetoothDevice.REQUEST_TYPE_MESSAGE_ACCESS)) { in onReceive()