Home
last modified time | relevance | path

Searched refs:oap (Results 1 – 15 of 15) sorted by relevance

/frameworks/opt/bluetooth/src/android/bluetooth/client/map/
DBluetoothMasRequestGetMessagesListing.java64 ObexAppParameters oap = new ObexAppParameters(); in BluetoothMasRequestGetMessagesListing() local
68 oap.add(OAP_TAGID_FILTER_MESSAGE_TYPE, filter.messageType); in BluetoothMasRequestGetMessagesListing()
72 oap.add(OAP_TAGID_FILTER_PERIOD_BEGIN, filter.periodBegin); in BluetoothMasRequestGetMessagesListing()
76 oap.add(OAP_TAGID_FILTER_PERIOD_END, filter.periodEnd); in BluetoothMasRequestGetMessagesListing()
80 oap.add(OAP_TAGID_FILTER_READ_STATUS, filter.readStatus); in BluetoothMasRequestGetMessagesListing()
84 oap.add(OAP_TAGID_FILTER_RECIPIENT, filter.recipient); in BluetoothMasRequestGetMessagesListing()
88 oap.add(OAP_TAGID_FILTER_ORIGINATOR, filter.originator); in BluetoothMasRequestGetMessagesListing()
92 oap.add(OAP_TAGID_FILTER_PRIORITY, filter.priority); in BluetoothMasRequestGetMessagesListing()
97 oap.add(OAP_TAGID_SUBJECT_LENGTH, (byte) subjectLength); in BluetoothMasRequestGetMessagesListing()
103 oap.add(OAP_TAGID_PARAMETER_MASK, parameters); in BluetoothMasRequestGetMessagesListing()
[all …]
DBluetoothMasRequestGetFolderListingSize.java35 ObexAppParameters oap = new ObexAppParameters(); in BluetoothMasRequestGetFolderListingSize() local
36 oap.add(OAP_TAGID_MAX_LIST_COUNT, 0); in BluetoothMasRequestGetFolderListingSize()
38 oap.addToHeaderSet(mHeaderSet); in BluetoothMasRequestGetFolderListingSize()
43 ObexAppParameters oap = ObexAppParameters.fromHeaderSet(headerset); in readResponseHeaders() local
45 mSize = oap.getShort(OAP_TAGID_FOLDER_LISTING_SIZE); in readResponseHeaders()
DBluetoothMasRequestGetMessagesListingSize.java36 ObexAppParameters oap = new ObexAppParameters(); in BluetoothMasRequestGetMessagesListingSize() local
37 oap.add(OAP_TAGID_MAX_LIST_COUNT, (short) 0); in BluetoothMasRequestGetMessagesListingSize()
39 oap.addToHeaderSet(mHeaderSet); in BluetoothMasRequestGetMessagesListingSize()
44 ObexAppParameters oap = ObexAppParameters.fromHeaderSet(headerset); in readResponseHeaders() local
46 mSize = oap.getShort(OAP_TAGID_MESSAGES_LISTING_SIZE); in readResponseHeaders()
DBluetoothMasRequestPushMessage.java47 ObexAppParameters oap = new ObexAppParameters(); in BluetoothMasRequestPushMessage() local
48 oap.add(OAP_TAGID_TRANSPARENT, transparent ? TRANSPARENT_ON : TRANSPARENT_OFF); in BluetoothMasRequestPushMessage()
49 oap.add(OAP_TAGID_RETRY, retry ? RETRY_ON : RETRY_OFF); in BluetoothMasRequestPushMessage()
50 oap.add(OAP_TAGID_CHARSET, charset == CharsetType.NATIVE ? CHARSET_NATIVE : CHARSET_UTF8); in BluetoothMasRequestPushMessage()
51 oap.addToHeaderSet(mHeaderSet); in BluetoothMasRequestPushMessage()
DBluetoothMasRequestSetMessageStatus.java40 ObexAppParameters oap = new ObexAppParameters(); in BluetoothMasRequestSetMessageStatus() local
41 oap.add(OAP_TAGID_STATUS_INDICATOR, in BluetoothMasRequestSetMessageStatus()
44 oap.add(OAP_TAGID_STATUS_VALUE, statusValue ? STATUS_YES : STATUS_NO); in BluetoothMasRequestSetMessageStatus()
45 oap.addToHeaderSet(mHeaderSet); in BluetoothMasRequestSetMessageStatus()
DBluetoothMasRequestGetFolderListing.java45 ObexAppParameters oap = new ObexAppParameters(); in BluetoothMasRequestGetFolderListing() local
48 oap.add(OAP_TAGID_MAX_LIST_COUNT, (short) maxListCount); in BluetoothMasRequestGetFolderListing()
52 oap.add(OAP_TAGID_START_OFFSET, (short) listStartOffset); in BluetoothMasRequestGetFolderListing()
55 oap.addToHeaderSet(mHeaderSet); in BluetoothMasRequestGetFolderListing()
DBluetoothMasRequestGetMessage.java47 ObexAppParameters oap = new ObexAppParameters(); in BluetoothMasRequestGetMessage() local
49 oap.add(OAP_TAGID_CHARSET, CharsetType.UTF_8.equals(charset) ? CHARSET_UTF8 in BluetoothMasRequestGetMessage()
52 oap.add(OAP_TAGID_ATTACHMENT, attachment ? ATTACHMENT_ON : ATTACHMENT_OFF); in BluetoothMasRequestGetMessage()
54 oap.addToHeaderSet(mHeaderSet); in BluetoothMasRequestGetMessage()
DBluetoothMasRequestSetNotificationRegistration.java37 ObexAppParameters oap = new ObexAppParameters(); in BluetoothMasRequestSetNotificationRegistration() local
39 oap.add(OAP_TAGID_NOTIFICATION_STATUS, status ? NOTIFICATION_ON : NOTIFICATION_OFF); in BluetoothMasRequestSetNotificationRegistration()
41 oap.addToHeaderSet(mHeaderSet); in BluetoothMasRequestSetNotificationRegistration()
DBluetoothMnsObexServer.java93 ObexAppParameters oap = ObexAppParameters.fromHeaderSet(headerset); in onPut() local
95 if (!TYPE.equals(type) || !oap.exists(BluetoothMasRequest.OAP_TAGID_MAS_INSTANCE_ID)) { in onPut()
99 Byte inst = oap.getByte(BluetoothMasRequest.OAP_TAGID_MAS_INSTANCE_ID); in onPut()
/frameworks/opt/bluetooth/src/android/bluetooth/client/pbap/
DBluetoothPbapRequestPullPhoneBook.java57 ObexAppParameters oap = new ObexAppParameters(); in BluetoothPbapRequestPullPhoneBook() local
66 oap.add(OAP_TAGID_FILTER, filter); in BluetoothPbapRequestPullPhoneBook()
69 oap.add(OAP_TAGID_FORMAT, format); in BluetoothPbapRequestPullPhoneBook()
76 oap.add(OAP_TAGID_MAX_LIST_COUNT, (short) maxListCount); in BluetoothPbapRequestPullPhoneBook()
78 oap.add(OAP_TAGID_MAX_LIST_COUNT, (short) 65535); in BluetoothPbapRequestPullPhoneBook()
82 oap.add(OAP_TAGID_LIST_START_OFFSET, (short) listStartOffset); in BluetoothPbapRequestPullPhoneBook()
85 oap.addToHeaderSet(mHeaderSet); in BluetoothPbapRequestPullPhoneBook()
101 ObexAppParameters oap = ObexAppParameters.fromHeaderSet(headerset); in readResponseHeaders() local
103 if (oap.exists(OAP_TAGID_NEW_MISSED_CALLS)) { in readResponseHeaders()
104 mNewMissedCalls = oap.getByte(OAP_TAGID_NEW_MISSED_CALLS); in readResponseHeaders()
DBluetoothPbapRequestPullVcardListing.java59 ObexAppParameters oap = new ObexAppParameters(); in BluetoothPbapRequestPullVcardListing() local
62 oap.add(OAP_TAGID_ORDER, order); in BluetoothPbapRequestPullVcardListing()
66 oap.add(OAP_TAGID_SEARCH_ATTRIBUTE, searchAttr); in BluetoothPbapRequestPullVcardListing()
67 oap.add(OAP_TAGID_SEARCH_VALUE, searchVal); in BluetoothPbapRequestPullVcardListing()
75 oap.add(OAP_TAGID_MAX_LIST_COUNT, (short) maxListCount); in BluetoothPbapRequestPullVcardListing()
79 oap.add(OAP_TAGID_LIST_START_OFFSET, (short) listStartOffset); in BluetoothPbapRequestPullVcardListing()
82 oap.addToHeaderSet(mHeaderSet); in BluetoothPbapRequestPullVcardListing()
96 ObexAppParameters oap = ObexAppParameters.fromHeaderSet(headerset); in readResponseHeaders() local
98 if (oap.exists(OAP_TAGID_NEW_MISSED_CALLS)) { in readResponseHeaders()
99 mNewMissedCalls = oap.getByte(OAP_TAGID_NEW_MISSED_CALLS); in readResponseHeaders()
DBluetoothPbapRequestPullVcardListingSize.java38 ObexAppParameters oap = new ObexAppParameters(); in BluetoothPbapRequestPullVcardListingSize() local
39 oap.add(OAP_TAGID_MAX_LIST_COUNT, (short) 0); in BluetoothPbapRequestPullVcardListingSize()
40 oap.addToHeaderSet(mHeaderSet); in BluetoothPbapRequestPullVcardListingSize()
47 ObexAppParameters oap = ObexAppParameters.fromHeaderSet(headerset); in readResponseHeaders() local
49 mSize = oap.getShort(OAP_TAGID_PHONEBOOK_SIZE); in readResponseHeaders()
DBluetoothPbapRequestPullPhoneBookSize.java38 ObexAppParameters oap = new ObexAppParameters(); in BluetoothPbapRequestPullPhoneBookSize() local
39 oap.add(OAP_TAGID_MAX_LIST_COUNT, (short) 0); in BluetoothPbapRequestPullPhoneBookSize()
40 oap.addToHeaderSet(mHeaderSet); in BluetoothPbapRequestPullPhoneBookSize()
47 ObexAppParameters oap = ObexAppParameters.fromHeaderSet(headerset); in readResponseHeaders() local
49 mSize = oap.getShort(OAP_TAGID_PHONEBOOK_SIZE); in readResponseHeaders()
DBluetoothPbapRequestPullVcardEntry.java51 ObexAppParameters oap = new ObexAppParameters(); in BluetoothPbapRequestPullVcardEntry() local
54 oap.add(OAP_TAGID_FILTER, filter); in BluetoothPbapRequestPullVcardEntry()
57 oap.add(OAP_TAGID_FORMAT, format); in BluetoothPbapRequestPullVcardEntry()
58 oap.addToHeaderSet(mHeaderSet); in BluetoothPbapRequestPullVcardEntry()
/frameworks/base/libs/androidfw/
DAssetManager.cpp234 asset_path oap; in addAssetPath() local
235 for (size_t idx = 0; mZipSet.getOverlay(ap.path, idx, &oap); idx++) { in addAssetPath()
236 mAssetPaths.add(oap); in addAssetPath()
294 asset_path oap; in addOverlayPath() local
295 oap.path = overlayPath; in addOverlayPath()
296 oap.type = ::getFileType(overlayPath.string()); in addOverlayPath()
297 oap.idmap = idmapPath; in addOverlayPath()
302 mAssetPaths.add(oap); in addOverlayPath()
306 appendPathToResTable(oap); in addOverlayPath()
795 asset_path oap; in addSystemOverlays() local
[all …]