Searched refs:sent (Results 1 - 8 of 8) sorted by relevance

/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
H A DMockWifiMonitor.java69 boolean sent = false;
72 sent = true;
76 + ",what=" + message.what, sent);
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiTrafficPoller.java185 long sent, received;
200 sent = mTxPkts - preTxPkts;
202 if (sent > 0) {
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DSmsUsageMonitor.java72 /** Default checking period for SMS sent without user permission. */
75 /** Default number of SMS sent in checking period without user permission. */
99 /** Premium SMS permission for a new package (ask user when first premium SMS sent). */
102 /** Default premium SMS permission (ask user for each premium SMS sent). */
628 private boolean isUnderLimit(ArrayList<Long> sent, int smsWaiting) { argument
632 if (VDBG) log("SMS send size=" + sent.size() + " time=" + ct);
634 while (!sent.isEmpty() && sent.get(0) < beginCheckPeriod) {
635 sent.remove(0);
638 if ((sent
[all...]
/frameworks/base/services/core/java/com/android/server/am/
H A DPendingIntentRecord.java53 boolean sent = false; field in class:PendingIntentRecord
262 sent = true;
366 int sent = owner.broadcastIntentInPackage(key.packageName, uid,
370 if (sent == ActivityManager.BROADCAST_SUCCESS) {
446 if (sent || canceled) {
447 pw.print(prefix); pw.print("sent="); pw.print(sent);
/frameworks/base/services/core/java/com/android/server/
H A DNativeDaemonConnector.java148 final int sent = msg.arg1;
160 if (start > sent && start - sent > WARN_EXECUTE_DELAY_MS) {
161 loge(String.format("NDC event {%s} processed too late: %dms", event, start - sent));
348 * Method that waits until all asychronous notifications sent by the native daemon have
/frameworks/rs/script_api/
H A Drs_io.spec62 It returns true if the message was sent and false if the
/frameworks/native/cmds/atrace/
H A Datrace.cpp979 ssize_t sent = 0; local
980 while ((sent = sendfile(outFd, traceFD, NULL, 64*1024*1024)) > 0);
981 if (sent == -1) {
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
H A DDcTracker.java139 // Default sent packets without ack which triggers initial recovery steps
565 // Number of packets sent since the last received packet
582 /** Intent sent when the reconnect alarm fires. */
3056 // is sent to the DCT.
4580 long sent, received;
4595 sent = mTxPkts - preTxRxSum.txPkts;
4599 log("updateDataActivity: sent=" + sent + " received=" + received);
4600 if (sent > 0 && received > 0) {
4602 } else if (sent >
[all...]

Completed in 191 milliseconds