Searched defs:sent (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/services/java/com/android/server/am/
H A DPendingIntentRecord.java39 boolean sent = false; field in class:PendingIntentRecord
202 sent = true;
344 if (sent || canceled) {
345 pw.print(prefix); pw.print("sent="); pw.print(sent);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DSmsUsageMonitor.java71 /** Default checking period for SMS sent without user permission. */
74 /** Default number of SMS sent in checking period without user permission. */
98 /** Premium SMS permission for a new package (ask user when first premium SMS sent). */
101 /** Default premium SMS permission (ask user for each premium SMS sent). */
626 private boolean isUnderLimit(ArrayList<Long> sent, int smsWaiting) { argument
630 if (VDBG) log("SMS send size=" + sent.size() + " time=" + ct);
632 while (!sent.isEmpty() && sent.get(0) < beginCheckPeriod) {
633 sent.remove(0);
636 if ((sent
[all...]
/frameworks/native/cmds/atrace/
H A Datrace.cpp653 ssize_t sent = 0; local
654 while ((sent = sendfile(STDOUT_FILENO, traceFD, NULL, 64*1024*1024)) > 0);
655 if (sent == -1) {

Completed in 129 milliseconds