Searched defs:jid (Results 26 - 50 of 80) sorted by relevance

1234

/external/smack/src/org/jivesoftware/smackx/workgroup/packet/
H A DAgentInfo.java41 private String jid; field in class:AgentInfo
45 * Returns the Agent's jid.
47 * @return the Agent's jid.
50 return jid;
54 * Sets the Agent's jid.
56 * @param jid the jid of the agent.
58 public void setJid(String jid) { argument
59 this.jid = jid;
[all...]
H A DAgentStatusRequest.java78 buf.append("<agent jid=\"").append(item.getJID()).append("\">");
93 private String jid; field in class:AgentStatusRequest.Item
97 public Item(String jid, String type, String name) { argument
98 this.jid = jid;
104 return jid;
146 String jid = parser.getAttributeValue("", "jid");
160 return new Item(jid, type, name);
H A DOccupantsInfo.java80 // Add the occupant jid
81 buf.append("<jid>");
83 buf.append("</jid>");
101 private String jid; field in class:OccupantsInfo.OccupantInfo
105 public OccupantInfo(String jid, String nickname, Date joined) { argument
106 this.jid = jid;
112 return jid;
152 String jid = null;
157 if ((eventType == XmlPullParser.START_TAG) && ("jid"
[all...]
/external/chromium_org/remoting/host/
H A Dhost_event_logger_posix.cc33 virtual void OnClientAuthenticated(const std::string& jid) OVERRIDE;
34 virtual void OnClientDisconnected(const std::string& jid) OVERRIDE;
35 virtual void OnAccessDenied(const std::string& jid) OVERRIDE;
37 const std::string& jid,
69 void HostEventLoggerPosix::OnClientAuthenticated(const std::string& jid) { argument
70 Log("Client connected: " + jid);
73 void HostEventLoggerPosix::OnClientDisconnected(const std::string& jid) { argument
74 Log("Client disconnected: " + jid);
77 void HostEventLoggerPosix::OnAccessDenied(const std::string& jid) { argument
78 Log("Access denied for client: " + jid);
81 OnClientRouteChange( const std::string& jid, const std::string& channel_name, const protocol::TransportRoute& route) argument
[all...]
H A Dhost_event_logger_win.cc35 virtual void OnClientAuthenticated(const std::string& jid) OVERRIDE;
36 virtual void OnClientDisconnected(const std::string& jid) OVERRIDE;
37 virtual void OnAccessDenied(const std::string& jid) OVERRIDE;
39 const std::string& jid,
80 void HostEventLoggerWin::OnClientAuthenticated(const std::string& jid) { argument
81 LogString(EVENTLOG_INFORMATION_TYPE, MSG_HOST_CLIENT_CONNECTED, jid);
84 void HostEventLoggerWin::OnClientDisconnected(const std::string& jid) { argument
85 LogString(EVENTLOG_INFORMATION_TYPE, MSG_HOST_CLIENT_DISCONNECTED, jid);
88 void HostEventLoggerWin::OnAccessDenied(const std::string& jid) { argument
89 LogString(EVENTLOG_ERROR_TYPE, MSG_HOST_CLIENT_ACCESS_DENIED, jid);
92 OnClientRouteChange( const std::string& jid, const std::string& channel_name, const protocol::TransportRoute& route) argument
[all...]
H A Dregister_support_host_request.cc79 const std::string& jid) {
86 query->AddElement(CreateSignature(jid).release());
91 const std::string& jid) {
100 std::string message = jid + ' ' + time_str;
78 CreateRegistrationRequest( const std::string& jid) argument
90 CreateSignature( const std::string& jid) argument
/external/chromium_org/third_party/libjingle/source/talk/examples/call/
H A Dmuc.h32 #include "talk/xmpp/jid.h"
39 Muc(const Jid& jid, const std::string& nick) : state_(MUC_JOINING), argument
40 jid_(jid), local_jid_(Jid(jid.Str() + "/" + nick)) {}
46 const Jid & jid() const { return jid_; } function in class:buzz::Muc
/external/chromium_org/third_party/libjingle/source/talk/xmpp/
H A Dfakexmppclient.h63 virtual const Jid& jid() const { function in class:buzz::FakeXmppClient
99 void set_jid(const Jid& jid) { argument
100 jid_ = jid;
/external/smack/src/org/jivesoftware/smackx/bookmark/
H A DBookmarkManager.java99 * @param jid the jid of the conference
106 public void addBookmarkedConference(String name, String jid, boolean isAutoJoin, argument
111 = new BookmarkedConference(name, jid, isAutoJoin, nickname, password);
132 * @param jid the jid of the conference to be removed.
138 public void removeBookmarkedConference(String jid) throws XMPPException { argument
143 if(conference.getJid().equalsIgnoreCase(jid)) {
H A DBookmarkedConference.java31 private final String jid; field in class:BookmarkedConference
37 protected BookmarkedConference(String jid) { argument
38 this.jid = jid;
41 protected BookmarkedConference(String name, String jid, boolean autoJoin, String nickname, argument
45 this.jid = jid;
84 return jid;
120 return conference.getJid().equalsIgnoreCase(jid);
/external/smack/src/org/jivesoftware/smackx/commands/
H A DLocalCommand.java131 * @param jid the JID to check permissions on.
134 public abstract boolean hasPermission(String jid); argument
H A DRemoteCommand.java57 private String jid; field in class:RemoteCommand
74 * <code>jid</code>
78 * @param jid the JID of the host.
80 protected RemoteCommand(Connection connection, String node, String jid) { argument
83 this.jid = jid;
177 return jid;
/external/smack/src/org/jivesoftware/smackx/packet/
H A DMUCAdmin.java89 private String jid; field in class:MUCAdmin.Item
142 return jid;
190 * @param jid the JID by which an occupant is identified within a room.
192 public void setJid(String jid) { argument
193 this.jid = jid;
213 buf.append(" jid=\"").append(getJid()).append("\"");
230 buf.append("<actor jid=\"").append(getActor()).append("\"/>");
H A DMUCOwner.java115 private String jid; field in class:MUCOwner.Item
166 return jid;
214 * @param jid the JID by which an occupant is identified within a room.
216 public void setJid(String jid) { argument
217 this.jid = jid;
249 buf.append(" jid=\"").append(getJid()).append("\"");
266 buf.append("<actor jid=\"").append(getActor()).append("\"/>");
283 private String jid; field in class:MUCOwner.Destroy
292 return jid;
309 setJid(String jid) argument
[all...]
H A DMultipleAddresses.java50 * @param jid the JID address of the recipient.
57 public void addAddress(String type, String jid, String node, String desc, boolean delivered, argument
61 address.setJid(jid);
123 private String jid; field in class:MultipleAddresses.Address
138 return jid;
141 private void setJid(String jid) { argument
142 this.jid = jid;
182 if (jid != null) {
183 buf.append(" jid
[all...]
H A DOfflineMessageRequest.java132 private String jid; field in class:OfflineMessageRequest.Item
170 return jid;
173 public void setJid(String jid) { argument
174 this.jid = jid;
184 buf.append(" jid=\"").append(getJid()).append("\"");
225 item.setJid(parser.getAttributeValue("", "jid"));
/external/smack/src/org/jivesoftware/smackx/pubsub/
H A DAffiliation.java31 protected String jid; field in class:Affiliation
43 * @param jid The JID with affiliation.
46 public Affiliation(String jid, Type affiliation) argument
48 this(jid, null, affiliation);
54 * @param jid The JID with affiliation.
58 public Affiliation(String jid, String node, Type affiliation) argument
60 this.jid = jid;
67 return jid;
96 appendAttribute(builder, "jid", ji
[all...]
H A DSubscription.java23 protected String jid; field in class:Subscription
60 * @param jid The JID the request was made under
65 public Subscription(String jid, String nodeId, String subscriptionId, State state) argument
68 this.jid = jid;
78 * @param jid The JID the request was made under
84 public Subscription(String jid, String nodeId, String subscriptionId, State state, boolean configRequired) argument
87 this.jid = jid;
100 return jid;
[all...]
/external/smack/src/org/jivesoftware/smackx/receipts/
H A DDeliveryReceiptManager.java90 * @param jid
93 public boolean isSupported(String jid) { argument
96 ServiceDiscoveryManager.getInstanceFor(connection).discoverInfo(jid);
/external/smack/src/org/jivesoftware/smackx/workgroup/
H A DWorkgroupInvitation.java45 * @param jid the jid string with which the issuing AgentSession or Workgroup instance
47 * @param group the jid of the room to which the person is invited
48 * @param workgroup the jid of the workgroup issuing the invitation
51 * @param from the user jid who issued the invitation, if known, null otherwise
53 public WorkgroupInvitation (String jid, String group, String workgroup, argument
55 this(jid, group, workgroup, sessID, msgBody, from, null);
59 * @param jid the jid string with which the issuing AgentSession or Workgroup instance
61 * @param group the jid o
68 WorkgroupInvitation(String jid, String group, String workgroup, String sessID, String msgBody, String from, Map<String, List<String>> metaData) argument
[all...]
/external/smack/src/org/jivesoftware/smackx/workgroup/settings/
H A DWorkgroupProperties.java32 private String jid; field in class:WorkgroupProperties
59 return jid;
62 public void setJid(String jid) { argument
63 this.jid = jid;
85 buf.append("jid=\"" + getJid() + "\" ");
/external/chromium_org/base/android/
H A Dtrace_event_binding.cc133 jstring jname, jlong jid, jstring jarg) {
138 jid,
144 jid);
149 jstring jname, jlong jid, jstring jarg) {
154 jid,
160 jid);
132 StartAsync(JNIEnv* env, jclass clazz, jstring jname, jlong jid, jstring jarg) argument
148 FinishAsync(JNIEnv* env, jclass clazz, jstring jname, jlong jid, jstring jarg) argument
/external/chromium_org/jingle/notifier/base/
H A Dgaia_token_pre_xmpp_auth.cc37 NS_GOOGLE_AUTH_PROTOCOL, "allow-generated-jid");
66 const buzz::Jid& jid,
65 StartPreXmppAuth( const buzz::Jid& jid, const rtc::SocketAddress& server, const rtc::CryptString& pass, const std::string& auth_mechanism, const std::string& auth_token) argument
/external/chromium_org/remoting/signaling/
H A Dfake_signal_strategy.cc28 FakeSignalStrategy::FakeSignalStrategy(const std::string& jid) argument
30 jid_(jid),
132 << ". Local jid: " << jid_
/external/smack/src/org/jivesoftware/smackx/ping/
H A DPingManager.java188 * Pings the given jid and returns the IQ response which is either of
192 * You should use isPingSupported(jid) to determine if XMPP Ping is
195 * @param jid
199 public IQ ping(String jid, long pingTimeout) { argument
204 Ping ping = new Ping(connection.getUser(), jid);
218 * Pings the given jid and returns the IQ response with the default
221 * @param jid
224 public IQ ping(String jid) { argument
225 return ping(jid, SmackConfiguration.getPacketReplyTimeout());
236 * Always use isPingSupported(jid) t
242 pingEntity(String jid, long pingTimeout) argument
252 pingEntity(String jid) argument
294 isPingSupported(String jid) argument
[all...]

Completed in 295 milliseconds

1234