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

/packages/apps/Camera2/src/com/android/camera/one/v2/commands/
H A DPreviewCommand.java43 int requestType) {
46 mRequestType = requestType;
42 PreviewCommand(FrameServer frameServer, RequestBuilder.Factory builder, int requestType) argument
/packages/apps/Camera2/src/com/android/camera/one/v2/core/
H A DTagDispatchCaptureSession.java125 * @param requestType Whether the request should be sent as a repeating
133 public void submitRequest(List<Request> burstRequests, FrameServer.RequestType requestType) argument
151 if (requestType == FrameServer.RequestType.REPEATING) {
/packages/apps/Settings/src/com/android/settings/bluetooth/
H A DBluetoothPermissionActivity.java63 int requestType = intent.getIntExtra(BluetoothDevice.EXTRA_ACCESS_REQUEST_TYPE,
65 if (requestType != mRequestType) return;
118 private void showDialog(String title, int requestType) argument
123 switch(requestType)
H A DBluetoothPermissionRequest.java196 private String getNotificationTag(int requestType) { argument
197 if(requestType == BluetoothDevice.REQUEST_TYPE_PHONEBOOK_ACCESS) {
/packages/services/Mms/src/com/android/mms/service/
H A DApnSettings.java204 private static boolean isValidApnType(String types, String requestType) { argument
211 if (type.equals(requestType) || type.equals(PhoneConstants.APN_TYPE_ALL)) {
/packages/apps/Bluetooth/tests/src/com/android/bluetooth/tests/
H A DSapServerTest.java558 int requestType = inStream.read();
559 Log.i(TAG,"Received message with type: " + SapMessage.getMsgTypeName(requestType));
560 SapMessage msg = SapMessage.readMessage(requestType, inStream);
562 if(requestType != -1) {
/packages/apps/Messaging/src/android/support/v7/mms/
H A DDefaultApnSettingsLoader.java482 * @param requestType The type we want
483 * @return true if the input types string contains the requestType
485 public static boolean isValidApnType(final String types, final String requestType) { argument
491 if (t.equals(requestType) || t.equals(APN_TYPE_ALL)) {
/packages/apps/Bluetooth/src/com/android/bluetooth/sap/
H A DSapMessage.java350 * @param requestType The type of the request
355 public static SapMessage readMessage(int requestType, InputStream is) { argument
356 SapMessage newMessage = new SapMessage(requestType);
372 if(DEBUG) Log.i(TAG, "readMessage() Read message: " + getMsgTypeName(requestType));
375 switch(requestType) {
H A DSapServer.java321 int requestType = mRfcommIn.read();
322 if(requestType == -1) {
325 SapMessage msg = SapMessage.readMessage(requestType, mRfcommIn);
330 switch (requestType) {
/packages/apps/Bluetooth/src/com/android/bluetooth/hfp/
H A DHeadsetService.java107 int requestType = intent.getIntExtra(BluetoothDevice.EXTRA_ACCESS_REQUEST_TYPE,
109 if (requestType == BluetoothDevice.REQUEST_TYPE_PHONEBOOK_ACCESS) {
/packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
H A DBluetoothPbapService.java283 int requestType = intent.getIntExtra(BluetoothDevice.EXTRA_ACCESS_REQUEST_TYPE,
287 || (requestType != BluetoothDevice.REQUEST_TYPE_PHONEBOOK_ACCESS)) {
/packages/apps/Messaging/src/com/android/messaging/sms/
H A DBugleApnSettingsLoader.java610 * @param requestType The type we want
611 * @return true if the input types string contains the requestType
613 public static boolean isValidApnType(final String types, final String requestType) { argument
619 if (t.equals(requestType) || t.equals(APN_TYPE_ALL)) {
/packages/apps/Bluetooth/src/com/android/bluetooth/map/
H A DBluetoothMapService.java920 int requestType = intent.getIntExtra(BluetoothDevice.EXTRA_ACCESS_REQUEST_TYPE,
924 requestType + "isWaitingAuthorization:" + mIsWaitingAuthorization);
926 || (requestType != BluetoothDevice.REQUEST_TYPE_MESSAGE_ACCESS)) {

Completed in 843 milliseconds