Home
last modified time | relevance | path

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

/aosp12/packages/apps/Bluetooth/src/com/android/bluetooth/mapclient/obex/
H A DRequestGetMessagesListing.java60 ObexAppParameters oap = new ObexAppParameters(); in RequestGetMessagesListing() local
72 oap.add(OAP_TAGID_FILTER_PERIOD_END, filter.periodEnd); in RequestGetMessagesListing()
80 oap.add(OAP_TAGID_FILTER_RECIPIENT, filter.recipient); in RequestGetMessagesListing()
88 oap.add(OAP_TAGID_FILTER_PRIORITY, filter.priority); in RequestGetMessagesListing()
93 oap.add(OAP_TAGID_SUBJECT_LENGTH, (byte) subjectLength); in RequestGetMessagesListing()
99 oap.add(OAP_TAGID_PARAMETER_MASK, parameters); in RequestGetMessagesListing()
103 oap.add(OAP_TAGID_MAX_LIST_COUNT, (short) maxListCount); in RequestGetMessagesListing()
107 oap.add(OAP_TAGID_START_OFFSET, (short) listStartOffset); in RequestGetMessagesListing()
110 oap.addToHeaderSet(mHeaderSet); in RequestGetMessagesListing()
124 if (oap.exists(OAP_TAGID_MSE_TIME)) { in readResponseHeaders()
[all …]
H A DRequestPushMessage.java49 ObexAppParameters oap = new ObexAppParameters(); in RequestPushMessage() local
50 oap.add(OAP_TAGID_TRANSPARENT, transparent ? TRANSPARENT_ON : TRANSPARENT_OFF); in RequestPushMessage()
51 oap.add(OAP_TAGID_RETRY, retry ? RETRY_ON : RETRY_OFF); in RequestPushMessage()
52 oap.add(OAP_TAGID_CHARSET, charset == CharsetType.NATIVE ? CHARSET_NATIVE : CHARSET_UTF8); in RequestPushMessage()
53 oap.addToHeaderSet(mHeaderSet); in RequestPushMessage()
H A DRequestGetFolderListing.java45 ObexAppParameters oap = new ObexAppParameters(); in RequestGetFolderListing() local
48 oap.add(OAP_TAGID_MAX_LIST_COUNT, (short) maxListCount); in RequestGetFolderListing()
52 oap.add(OAP_TAGID_START_OFFSET, (short) listStartOffset); in RequestGetFolderListing()
55 oap.addToHeaderSet(mHeaderSet); in RequestGetFolderListing()
H A DRequestSetMessageStatus.java37 ObexAppParameters oap = new ObexAppParameters(); in RequestSetMessageStatus() local
38 oap.add(OAP_TAGID_STATUS_INDICATOR, in RequestSetMessageStatus()
41 oap.add(OAP_TAGID_STATUS_VALUE, value == STATUS_YES ? STATUS_YES in RequestSetMessageStatus()
43 oap.addToHeaderSet(mHeaderSet); in RequestSetMessageStatus()
H A DRequestGetMessage.java51 ObexAppParameters oap = new ObexAppParameters(); in RequestGetMessage() local
53 oap.add(OAP_TAGID_CHARSET, in RequestGetMessage()
56 oap.add(OAP_TAGID_ATTACHMENT, attachment ? ATTACHMENT_ON : ATTACHMENT_OFF); in RequestGetMessage()
58 oap.addToHeaderSet(mHeaderSet); in RequestGetMessage()
H A DRequestSetNotificationRegistration.java37 ObexAppParameters oap = new ObexAppParameters(); in RequestSetNotificationRegistration() local
39 oap.add(OAP_TAGID_NOTIFICATION_STATUS, status ? NOTIFICATION_ON : NOTIFICATION_OFF); in RequestSetNotificationRegistration()
41 oap.addToHeaderSet(mHeaderSet); in RequestSetNotificationRegistration()
/aosp12/packages/apps/Bluetooth/src/com/android/bluetooth/pbapclient/
H A DBluetoothPbapRequestPullPhoneBook.java61 ObexAppParameters oap = new ObexAppParameters(); in BluetoothPbapRequestPullPhoneBook() local
70 oap.add(OAP_TAGID_FILTER, filter); in BluetoothPbapRequestPullPhoneBook()
73 oap.add(OAP_TAGID_FORMAT, format); in BluetoothPbapRequestPullPhoneBook()
80 oap.add(OAP_TAGID_MAX_LIST_COUNT, (short) maxListCount); in BluetoothPbapRequestPullPhoneBook()
82 oap.add(OAP_TAGID_MAX_LIST_COUNT, (short) 65535); in BluetoothPbapRequestPullPhoneBook()
86 oap.add(OAP_TAGID_LIST_START_OFFSET, (short) listStartOffset); in BluetoothPbapRequestPullPhoneBook()
89 oap.addToHeaderSet(mHeaderSet); in BluetoothPbapRequestPullPhoneBook()
108 ObexAppParameters oap = ObexAppParameters.fromHeaderSet(headerset); in readResponseHeaders() local
110 if (oap.exists(OAP_TAGID_NEW_MISSED_CALLS)) { in readResponseHeaders()
111 mNewMissedCalls = oap.getByte(OAP_TAGID_NEW_MISSED_CALLS); in readResponseHeaders()
H A DBluetoothPbapRequestPullPhoneBookSize.java38 ObexAppParameters oap = new ObexAppParameters(); in BluetoothPbapRequestPullPhoneBookSize() local
43 oap.add(OAP_TAGID_MAX_LIST_COUNT, (short) 0); in BluetoothPbapRequestPullPhoneBookSize()
45 oap.add(OAP_TAGID_FILTER, filter); in BluetoothPbapRequestPullPhoneBookSize()
47 oap.addToHeaderSet(mHeaderSet); in BluetoothPbapRequestPullPhoneBookSize()
56 ObexAppParameters oap = ObexAppParameters.fromHeaderSet(headerset); in readResponseHeaders() local
58 if (oap.exists(OAP_TAGID_PHONEBOOK_SIZE)) { in readResponseHeaders()
59 mSize = oap.getShort(OAP_TAGID_PHONEBOOK_SIZE); in readResponseHeaders()
H A DPbapClientConnectionHandler.java341 ObexAppParameters oap = new ObexAppParameters(); in connectObexSession() local
344 oap.add(BluetoothPbapRequest.OAP_TAGID_PBAP_SUPPORTED_FEATURES, in connectObexSession()
348 oap.addToHeaderSet(connectionRequest); in connectObexSession()
/aosp12/frameworks/base/libs/androidfw/
H A DAssetManager.cpp222 asset_path oap; in addAssetPath() local
225 mAssetPaths.add(oap); in addAssetPath()
283 asset_path oap; in addOverlayPath() local
284 oap.path = overlayPath; in addOverlayPath()
286 oap.idmap = idmapPath; in addOverlayPath()
291 mAssetPaths.add(oap); in addOverlayPath()
295 appendPathToResTable(oap); in addOverlayPath()
723 asset_path oap; in addSystemOverlays() local
730 oap.type = kFileTypeRegular; in addSystemOverlays()
732 oap.isSystemOverlay = true; in addSystemOverlays()
[all …]
/aosp12/packages/apps/Bluetooth/src/com/android/bluetooth/mapclient/
H A DMnsObexServer.java118 ObexAppParameters oap = ObexAppParameters.fromHeaderSet(headerset); in onPut() local
119 if (!TYPE.equals(type) || !oap.exists(Request.OAP_TAGID_MAS_INSTANCE_ID)) { in onPut()
123 Byte inst = oap.getByte(Request.OAP_TAGID_MAS_INSTANCE_ID); in onPut()
H A DMasClient.java129 ObexAppParameters oap = new ObexAppParameters(); in connect() local
131 oap.add(OAP_TAGID_MAP_SUPPORTED_FEATURES, MAP_SUPPORTED_FEATURES); in connect()
133 oap.addToHeaderSet(headerset); in connect()
/aosp12/packages/inputmethods/LatinIME/dictionaries/
H A Dro_wordlist.combined.gz1dictionary=main:ro,locale=ro,description=Română,date=1412325511, ...