HomeSort by relevance Sort by last modified time
    Searched refs:requestType (Results 1 - 25 of 40) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
HitTestRequest.h 30 enum RequestType {
47 HitTestRequest(HitTestRequestType requestType)
48 : m_requestType(requestType)
  /frameworks/base/core/java/android/hardware/usb/
UsbDeviceConnection.java 106 * If requestType & {@link UsbConstants#USB_ENDPOINT_DIR_MASK} is
116 * @param requestType request type for this transaction
127 public int controlTransfer(int requestType, int request, int value,
129 return controlTransfer(requestType, request, value, index, buffer, 0, length, timeout);
135 * If requestType & {@link UsbConstants#USB_ENDPOINT_DIR_MASK} is
140 * @param requestType request type for this transaction
152 public int controlTransfer(int requestType, int request, int value, int index,
155 return native_control_request(requestType, request, value, index,
239 private native int native_control_request(int requestType, int request, int value,
  /frameworks/base/packages/services/Proxy/src/com/android/proxyhandler/
ProxyServer.java 79 String requestType = splitLine[0];
85 if (requestType.equals(CONNECT)) {
126 if (requestType.equals(CONNECT)) {
143 if (requestType.equals(CONNECT)) {
  /packages/apps/Mms/src/com/android/mms/transaction/
TransactionSettings.java 163 static private boolean isValidApnType(String types, String requestType) {
170 if (t.equals(requestType) || t.equals(PhoneConstants.APN_TYPE_ALL)) {
  /packages/apps/Settings/src/com/android/settings/bluetooth/
BluetoothPermissionActivity.java 64 int requestType = intent.getIntExtra(BluetoothDevice.EXTRA_ACCESS_REQUEST_TYPE,
66 if (requestType != mRequestType) return;
117 private void showDialog(String title, int requestType)
123 switch(requestType)
BluetoothPermissionRequest.java 154 private String getNotificationTag(int requestType) {
155 if(requestType == BluetoothDevice.REQUEST_TYPE_PHONEBOOK_ACCESS) {
174 if (DEBUG) Log.d(TAG, "Unknown RequestType: " + mRequestType);
  /frameworks/opt/net/voip/src/java/com/android/server/sip/
SipHelper.java 233 private Request createRequest(String requestType, SipProfile userProfile,
244 CSeqHeader cSeqHeader = createCSeqHeader(requestType);
247 requestType, callIdHeader, cSeqHeader, fromHeader,
269 private Request createRequest(String requestType, SipProfile caller,
276 CSeqHeader cSeqHeader = createCSeqHeader(requestType);
280 requestType, callIdHeader, cSeqHeader, fromHeader,
  /system/core/include/usbhost/
usbhost.h 194 int requestType,
  /frameworks/base/core/jni/
android_hardware_UsbDeviceConnection.cpp 144 jint requestType, jint request, jint value, jint index,
158 jint result = usb_device_control_transfer(device, requestType, request,
  /frameworks/base/obex/javax/obex/
ServerSession.java 94 int requestType = mInput.read();
95 switch (requestType) {
107 handleGetRequest(requestType);
112 handlePutRequest(requestType);
  /hardware/libhardware/tests/camera2/
camera2.cpp 449 uint8_t requestType = ANDROID_REQUEST_TYPE_CAPTURE;
452 (void**)&requestType, 1);
579 uint8_t requestType = ANDROID_REQUEST_TYPE_CAPTURE;
582 (void**)&requestType, 1);
752 uint8_t requestType = ANDROID_REQUEST_TYPE_CAPTURE;
755 (void**)&requestType, 1);
  /external/chromium_org/third_party/WebKit/Source/web/
WebPluginContainerImpl.cpp 490 void WebPluginContainerImpl::requestTouchEventType(TouchEventRequestType requestType)
492 if (m_touchEventRequestType == requestType)
495 if (requestType != TouchEventRequestTypeNone && m_touchEventRequestType == TouchEventRequestTypeNone)
497 else if (requestType == TouchEventRequestTypeNone && m_touchEventRequestType != TouchEventRequestTypeNone)
499 m_touchEventRequestType = requestType;
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapService.java 656 int requestType = intent.getIntExtra(BluetoothDevice.EXTRA_ACCESS_REQUEST_TYPE,
659 requestType + ":" + isWaitingAuthorization);
661 (requestType != BluetoothDevice.REQUEST_TYPE_MESSAGE_ACCESS)) {
  /frameworks/av/services/camera/libcameraservice/api1/client2/
ZslProcessor3.cpp 247 uint8_t requestType = ANDROID_REQUEST_TYPE_REPROCESS;
249 &requestType, 1);
ZslProcessor.cpp 300 uint8_t requestType = ANDROID_REQUEST_TYPE_REPROCESS;
302 &requestType, 1);
  /packages/apps/Bluetooth/src/com/android/bluetooth/hfp/
HeadsetService.java 107 int requestType = intent.getIntExtra(BluetoothDevice.EXTRA_ACCESS_REQUEST_TYPE,
109 if (requestType == BluetoothDevice.REQUEST_TYPE_PHONEBOOK_ACCESS) {
  /external/chromium_org/chrome/browser/resources/file_manager/js/
volume_manager.js 356 * @param {string} requestType 'mount' | 'unmount'.
363 VolumeManager.prototype.makeRequestKey_ = function(requestType,
366 return requestType + ':' + mountType + ':' + mountOrSourcePath;
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
BluetoothPbapService.java 255 int requestType = intent.getIntExtra(BluetoothDevice.EXTRA_ACCESS_REQUEST_TYPE,
259 (requestType != BluetoothDevice.REQUEST_TYPE_PHONEBOOK_ACCESS)) {
  /system/core/libusbhost/
usbhost.c 560 int requestType,
575 ctrl.bRequestType = requestType;
  /frameworks/base/core/java/android/app/
IApplicationThread.java 135 void requestAssistContextExtras(IBinder activityToken, IBinder requestToken, int requestType)
ApplicationThreadNative.java 597 int requestType = data.readInt();
598 requestAssistContextExtras(activityToken, requestToken, requestType);
    [all...]
IActivityManager.java 397 public Bundle getAssistContextExtras(int requestType) throws RemoteException;
    [all...]
ActivityThread.java 531 int requestType;
    [all...]
  /device/generic/goldfish/camera/
EmulatedFakeCamera3.cpp 463 static const uint8_t requestType = ANDROID_REQUEST_TYPE_CAPTURE;
464 settings.update(ANDROID_REQUEST_TYPE, &requestType, 1);
    [all...]
EmulatedFakeCamera2.cpp     [all...]

Completed in 5917 milliseconds

1 2