Home | History | Annotate | Download | only in trust

Lines Matching refs:userId

46         final int userId;
58 private Event(int type, int userId, ComponentName agent, String message,
61 this.userId = userId;
73 public void logGrantTrust(int userId, ComponentName agent, String message,
75 addEvent(new Event(TYPE_GRANT_TRUST, userId, agent, message, duration,
79 public void logRevokeTrust(int userId, ComponentName agent) {
80 addEvent(new Event(TYPE_REVOKE_TRUST, userId, agent, null, 0, 0, false));
83 public void logTrustTimeout(int userId, ComponentName agent) {
84 addEvent(new Event(TYPE_TRUST_TIMEOUT, userId, agent, null, 0, 0, false));
87 public void logAgentDied(int userId, ComponentName agent) {
88 addEvent(new Event(TYPE_AGENT_DIED, userId, agent, null, 0, 0, false));
91 public void logAgentConnected(int userId, ComponentName agent) {
92 addEvent(new Event(TYPE_AGENT_CONNECTED, userId, agent, null, 0, 0, false));
95 public void logAgentStopped(int userId, ComponentName agent) {
96 addEvent(new Event(TYPE_AGENT_STOPPED, userId, agent, null, 0, 0, false));
99 public void logManagingTrust(int userId, ComponentName agent, boolean managing) {
100 addEvent(new Event(TYPE_MANAGING_TRUST, userId, agent, null, 0, 0, managing));
114 public void dump(PrintWriter writer, int limit, int userId, String linePrefix,
120 if (userId != UserHandle.USER_ALL && userId != ev.userId
121 && ev.userId != UserHandle.USER_ALL) {
128 if (userId == UserHandle.USER_ALL) {
129 writer.print("user="); writer.print(ev.userId); writer.print(", ");