/frameworks/opt/bluetooth/src/android/bluetooth/client/map/ |
D | BluetoothMasRequestGetMessagesListing.java | 64 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 …]
|
D | BluetoothMasRequestGetFolderListingSize.java | 35 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()
|
D | BluetoothMasRequestGetMessagesListingSize.java | 36 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()
|
D | BluetoothMasRequestPushMessage.java | 47 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()
|
D | BluetoothMasRequestSetMessageStatus.java | 40 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()
|
D | BluetoothMasRequestGetFolderListing.java | 45 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()
|
D | BluetoothMasRequestSetNotificationRegistration.java | 37 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()
|
D | BluetoothMasRequestGetMessage.java | 49 ObexAppParameters oap = new ObexAppParameters(); in BluetoothMasRequestGetMessage() local 51 oap.add(OAP_TAGID_CHARSET, CharsetType.UTF_8.equals(charset) ? CHARSET_UTF8 in BluetoothMasRequestGetMessage() 54 oap.add(OAP_TAGID_ATTACHMENT, attachment ? ATTACHMENT_ON : ATTACHMENT_OFF); in BluetoothMasRequestGetMessage() 56 oap.addToHeaderSet(mHeaderSet); in BluetoothMasRequestGetMessage()
|
D | BluetoothMnsObexServer.java | 93 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/base/libs/androidfw/ |
D | AssetManager.cpp | 206 asset_path oap; in addAssetPath() local 207 for (size_t idx = 0; mZipSet.getOverlay(ap.path, idx, &oap); idx++) { in addAssetPath() 208 oap.isSystemAsset = isSystemAsset; in addAssetPath() 209 mAssetPaths.add(oap); in addAssetPath() 267 asset_path oap; in addOverlayPath() local 268 oap.path = overlayPath; in addOverlayPath() 269 oap.type = ::getFileType(overlayPath.string()); in addOverlayPath() 270 oap.idmap = idmapPath; in addOverlayPath() 275 mAssetPaths.add(oap); in addOverlayPath() 279 appendPathToResTable(oap); in addOverlayPath() [all …]
|