OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:contentLocation
(Results
1 - 13
of
13
) sorted by null
/frameworks/opt/mms/src/java/com/google/android/mms/pdu/
PduBody.java
52
byte[]
contentLocation
= part.getContentLocation();
53
if(null !=
contentLocation
) {
54
String clc = new String(
contentLocation
);
168
public PduPart getPartByContentLocation(String
contentLocation
) {
169
return mPartMapByContentLocation.get(
contentLocation
);
PduPart.java
240
* @param
contentLocation
the value
243
public void setContentLocation(byte[]
contentLocation
) {
244
if(
contentLocation
== null) {
248
mPartHeader.put(P_CONTENT_LOCATION,
contentLocation
);
PduComposer.java
972
byte[]
contentLocation
= part.getContentLocation();
973
if (null !=
contentLocation
) {
975
appendTextString(
contentLocation
);
[
all
...]
PduParser.java
[
all
...]
PduPersister.java
394
byte[]
contentLocation
= getByteArrayFromPartColumn(
396
if (
contentLocation
!= null) {
397
part.setContentLocation(
contentLocation
);
[
all
...]
/packages/apps/Mms/src/com/android/mms/transaction/
PushReceiver.java
108
byte []
contentLocation
= nInd.getContentLocation();
109
if ('=' ==
contentLocation
[
contentLocation
.length - 1]) {
111
byte [] contentLocationWithId = new byte [
contentLocation
.length
113
System.arraycopy(
contentLocation
, 0, contentLocationWithId,
114
0,
contentLocation
.length);
116
contentLocation
.length, transactionId.length);
RetrieveTransaction.java
292
String
contentLocation
,
295
values.put(Mms.CONTENT_LOCATION,
contentLocation
);
/packages/providers/DownloadProvider/src/com/android/providers/downloads/
Helpers.java
77
String
contentLocation
,
92
path = chooseFilename(url, hint, contentDisposition,
contentLocation
,
154
String
contentLocation
, int destination) {
185
if (filename == null &&
contentLocation
!= null) {
186
String decodedContentLocation = Uri.decode(
contentLocation
);
/packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapbMessageMmsEmail.java
37
public String
contentLocation
= null;
54
if(
contentLocation
!= null)
55
sb.append("Content-Location: ").append(
contentLocation
).append("\r\n");
527
newPart.
contentLocation
= headerValue;
BluetoothMapContentObserver.java
826
} else if(part.contentId == null && part.
contentLocation
== null) {
834
if(part.
contentLocation
!= null)
835
values.put("cl", part.
contentLocation
);
849
if(part.
contentLocation
!= null)
850
values.put("cl", part.
contentLocation
);
[
all
...]
BluetoothMapContent.java
[
all
...]
/external/chromium_org/third_party/WebKit/Source/platform/mhtml/
MHTMLParser.cpp
67
String
contentLocation
() const { return m_contentLocation; }
363
KURL location = KURL(KURL(), mimeHeader.
contentLocation
());
/packages/providers/TelephonyProvider/src/com/android/providers/telephony/
MmsProvider.java
404
String
contentLocation
= values.getAsString("cl");
405
if (!TextUtils.isEmpty(
contentLocation
)) {
406
File f = new File(
contentLocation
);
407
contentLocation
= "_" + f.getName();
409
contentLocation
= "";
415
+ "/PART_" + System.currentTimeMillis() +
contentLocation
;
[
all
...]
Completed in 360 milliseconds