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

/frameworks/base/services/core/java/com/android/server/notification/
H A DRankingReconsideration.java21 * Represents future work required to extract signals from notifications for ranking.
55 work();
89 public abstract void work(); method in class:RankingReconsideration
H A DValidateNotificationPeople.java159 // Perform the heavy work on a background thread so we can abort when we hit the
165 prr.work();
250 if (DEBUG) Slog.d(TAG, "Pending: future work scheduled for: " + key);
422 public void work() { method in class:ValidateNotificationPeople.PeopleRankingReconsideration
/frameworks/base/core/jni/
H A Dandroid_app_NativeActivity.cpp74 ActivityWork work; local
75 work.cmd = cmd;
76 work.arg1 = arg1;
77 work.arg2 = arg2;
82 int res = write(fd, &work, sizeof(work));
87 if (res == sizeof(work)) return;
89 if (res < 0) ALOGW("Failed writing to work fd: %s", strerror(errno));
90 else ALOGW("Truncated writing to work fd: %d", res);
98 if (res < 0) ALOGW("Failed reading work f
204 ActivityWork work; local
[all...]

Completed in 1258 milliseconds