Searched refs:oap (Results 1 - 10 of 10) sorted by relevance

/frameworks/opt/bluetooth/src/android/bluetooth/client/map/
H A DBluetoothMasRequestGetFolderListingSize.java35 ObexAppParameters oap = new ObexAppParameters();
36 oap.add(OAP_TAGID_MAX_LIST_COUNT, 0);
38 oap.addToHeaderSet(mHeaderSet);
43 ObexAppParameters oap = ObexAppParameters.fromHeaderSet(headerset);
45 mSize = oap.getShort(OAP_TAGID_FOLDER_LISTING_SIZE);
H A DBluetoothMasRequestGetMessagesListingSize.java36 ObexAppParameters oap = new ObexAppParameters();
37 oap.add(OAP_TAGID_MAX_LIST_COUNT, (short) 0);
39 oap.addToHeaderSet(mHeaderSet);
44 ObexAppParameters oap = ObexAppParameters.fromHeaderSet(headerset);
46 mSize = oap.getShort(OAP_TAGID_MESSAGES_LISTING_SIZE);
H A DBluetoothMasRequestSetNotificationRegistration.java37 ObexAppParameters oap = new ObexAppParameters();
39 oap.add(OAP_TAGID_NOTIFICATION_STATUS, status ? NOTIFICATION_ON : NOTIFICATION_OFF);
41 oap.addToHeaderSet(mHeaderSet);
H A DBluetoothMasRequestGetMessagesListing.java64 ObexAppParameters oap = new ObexAppParameters();
68 oap.add(OAP_TAGID_FILTER_MESSAGE_TYPE, filter.messageType);
72 oap.add(OAP_TAGID_FILTER_PERIOD_BEGIN, filter.periodBegin);
76 oap.add(OAP_TAGID_FILTER_PERIOD_END, filter.periodEnd);
80 oap.add(OAP_TAGID_FILTER_READ_STATUS, filter.readStatus);
84 oap.add(OAP_TAGID_FILTER_RECIPIENT, filter.recipient);
88 oap.add(OAP_TAGID_FILTER_ORIGINATOR, filter.originator);
92 oap.add(OAP_TAGID_FILTER_PRIORITY, filter.priority);
97 oap.add(OAP_TAGID_SUBJECT_LENGTH, (byte) subjectLength);
103 oap
[all...]
H A DBluetoothMasRequestSetMessageStatus.java40 ObexAppParameters oap = new ObexAppParameters();
41 oap.add(OAP_TAGID_STATUS_INDICATOR,
44 oap.add(OAP_TAGID_STATUS_VALUE, statusValue ? STATUS_YES : STATUS_NO);
45 oap.addToHeaderSet(mHeaderSet);
H A DBluetoothMasRequestGetFolderListing.java45 ObexAppParameters oap = new ObexAppParameters();
48 oap.add(OAP_TAGID_MAX_LIST_COUNT, (short) maxListCount);
52 oap.add(OAP_TAGID_START_OFFSET, (short) listStartOffset);
55 oap.addToHeaderSet(mHeaderSet);
H A DBluetoothMasRequestPushMessage.java47 ObexAppParameters oap = new ObexAppParameters();
48 oap.add(OAP_TAGID_TRANSPARENT, transparent ? TRANSPARENT_ON : TRANSPARENT_OFF);
49 oap.add(OAP_TAGID_RETRY, retry ? RETRY_ON : RETRY_OFF);
50 oap.add(OAP_TAGID_CHARSET, charset == CharsetType.NATIVE ? CHARSET_NATIVE : CHARSET_UTF8);
51 oap.addToHeaderSet(mHeaderSet);
H A DBluetoothMasRequestGetMessage.java49 ObexAppParameters oap = new ObexAppParameters();
51 oap.add(OAP_TAGID_CHARSET, CharsetType.UTF_8.equals(charset) ? CHARSET_UTF8
54 oap.add(OAP_TAGID_ATTACHMENT, attachment ? ATTACHMENT_ON : ATTACHMENT_OFF);
56 oap.addToHeaderSet(mHeaderSet);
H A DBluetoothMnsObexServer.java93 ObexAppParameters oap = ObexAppParameters.fromHeaderSet(headerset);
95 if (!TYPE.equals(type) || !oap.exists(BluetoothMasRequest.OAP_TAGID_MAS_INSTANCE_ID)) {
99 Byte inst = oap.getByte(BluetoothMasRequest.OAP_TAGID_MAS_INSTANCE_ID);
/frameworks/base/libs/androidfw/
H A DAssetManager.cpp206 asset_path oap; local
207 for (size_t idx = 0; mZipSet.getOverlay(ap.path, idx, &oap); idx++) {
208 oap.isSystemAsset = isSystemAsset;
209 mAssetPaths.add(oap);
267 asset_path oap; local
268 oap.path = overlayPath;
269 oap.type = ::getFileType(overlayPath.string());
270 oap.idmap = idmapPath;
275 mAssetPaths.add(oap);
279 appendPathToResTable(oap);
677 asset_path oap; local
[all...]

Completed in 4072 milliseconds