OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:attachmentinfo
(Results
1 - 5
of
5
) sorted by null
/packages/apps/Email/src/com/android/email/activity/
AttachmentInfoDialog.java
19
import com.android.email.
AttachmentInfo
;
56
if ((denyFlags &
AttachmentInfo
.DENY_MALWARE) != 0) {
58
} else if ((denyFlags &
AttachmentInfo
.DENY_POLICY) != 0) {
60
} else if ((denyFlags &
AttachmentInfo
.DENY_NOINTENT) != 0) {
62
} else if ((denyFlags &
AttachmentInfo
.DENY_NOSIDELOAD) != 0) {
68
} else if ((denyFlags &
AttachmentInfo
.DENY_APKINSTALL) != 0) {
70
} else if ((denyFlags &
AttachmentInfo
.DENY_WIFIONLY) != 0) {
MessageViewFragmentBase.java
58
import com.android.email.
AttachmentInfo
;
[
all
...]
/packages/apps/Email/src/com/android/email/
AttachmentInfo.java
40
public class
AttachmentInfo
{
84
public
AttachmentInfo
(Context context, Attachment attachment) {
89
public
AttachmentInfo
(Context context, Cursor c) {
95
public
AttachmentInfo
(Context context,
AttachmentInfo
info) {
100
public
AttachmentInfo
(Context context, long id, long size, String fileName, String mimeType,
235
return ((
AttachmentInfo
) o).mId == mId;
/packages/apps/Email/src/com/android/email/service/
AttachmentDownloadService.java
35
import com.android.email.
AttachmentInfo
;
354
Cursor c = mContext.getContentResolver().query(lookupUri,
AttachmentInfo
.PROJECTION,
360
long accountKey = c.getLong(
AttachmentInfo
.COLUMN_ACCOUNT_KEY);
361
long id = c.getLong(
AttachmentInfo
.COLUMN_ID);
369
AttachmentInfo
info = new
AttachmentInfo
(mContext, c);
[
all
...]
/packages/apps/Email/tests/src/com/android/email/provider/
AttachmentProviderTests.java
19
import com.android.email.
AttachmentInfo
;
237
Attachment.CONTENT_URI,
AttachmentInfo
.PROJECTION,
248
Attachment.CONTENT_URI,
AttachmentInfo
.PROJECTION,
Completed in 73 milliseconds