/external/smack/src/org/jivesoftware/smackx/packet/ |
MUCOwner.java | 22 import org.jivesoftware.smack.packet.IQ; 30 * IQ packet that serves for granting and revoking ownership privileges, granting 36 public class MUCOwner extends IQ {
|
DiscoverInfo.java | 23 import org.jivesoftware.smack.packet.IQ; 34 * A DiscoverInfo IQ packet, which is used by XMPP clients to request and receive information 42 public class DiscoverInfo extends IQ {
|
VCard.java | 42 import org.jivesoftware.smack.packet.IQ; 87 public class VCard extends IQ { 516 setType(IQ.Type.SET);
|
/external/smack/src/org/jivesoftware/smackx/provider/ |
AdHocCommandDataProvider.java | 23 import org.jivesoftware.smack.packet.IQ;
43 public IQ parseIQ(XmlPullParser parser) throws Exception {
|
MUCOwnerProvider.java | 36 public IQ parseIQ(XmlPullParser parser) throws Exception {
|
VCardProvider.java | 23 import org.jivesoftware.smack.packet.IQ; 48 public IQ parseIQ(XmlPullParser parser) throws Exception {
|
/external/smack/src/org/jivesoftware/smackx/search/ |
SimpleUserSearch.java | 19 import org.jivesoftware.smack.packet.IQ; 36 class SimpleUserSearch extends IQ { 52 buf.append("<query xmlns=\"jabber:iq:search\">");
|
/external/smack/src/org/jivesoftware/smackx/workgroup/packet/ |
Transcripts.java | 22 import org.jivesoftware.smack.packet.IQ;
34 public class Transcripts extends IQ {
|
TranscriptsProvider.java | 22 import org.jivesoftware.smack.packet.IQ;
51 public IQ parseIQ(XmlPullParser parser) throws Exception {
|
/external/smack/src/org/jivesoftware/smack/packet/ |
Registration.java | 51 public class Registration extends IQ { 135 buf.append("<query xmlns=\"jabber:iq:register\">");
|
Privacy.java | 25 * A Privacy IQ Packet, is used by the {@link org.jivesoftware.smack.PrivacyListManager}
41 public class Privacy extends IQ {
278 buf.append("<query xmlns=\"jabber:iq:privacy\">");
|
RosterPacket.java | 33 public class RosterPacket extends IQ { 84 buf.append("<query xmlns=\"jabber:iq:roster\" ");
|
/external/smack/src/org/jivesoftware/smackx/ |
PEPManager.java | 32 import org.jivesoftware.smack.packet.IQ.Type;
|
/external/smack/src/org/jivesoftware/smack/provider/ |
ProviderManager.java | 23 import org.jivesoftware.smack.packet.IQ; 36 * <li>IQProvider -- parses IQ requests into Java objects. 42 * By default, Smack only knows how to process IQ packets with sub-packets that 44 * <li>jabber:iq:auth 45 * <li>jabber:iq:roster 46 * <li>jabber:iq:register</ul> 48 * Because many more IQ types are part of XMPP and its extensions, a pluggable IQ parsing 49 * mechanism is provided. IQ providers are registered programatically or by creating a 58 * <namespace>jabber:iq:time</namespace> [all...] |
/external/smack/src/org/jivesoftware/smackx/commands/ |
AdHocCommandManager.java | 26 import org.jivesoftware.smack.packet.IQ;
378 if (requestData.getType() != IQ.Type.SET) {
410 response.setType(IQ.Type.RESULT);
577 response.setType(IQ.Type.RESULT);
669 response.setType(IQ.Type.ERROR);
|
/external/smack/src/org/jivesoftware/smackx/pubsub/ |
LeafNode.java | 22 import org.jivesoftware.smack.packet.IQ.Type;
|
PubSubManager.java | 22 import org.jivesoftware.smack.packet.IQ.Type;
|
Node.java | 36 import org.jivesoftware.smack.packet.IQ.Type;
|
/external/chromium_org/remoting/webapp/ |
format_iq.js | 7 * Module to format IQ messages so they can be displayed in the debug log. 48 * params in the IQ packets. 385 * Print out the heading line for an iq node. 389 * @param {string} desc Description of iq action for this node. 396 var message = 'iq ' + action + ' id=' + id; 407 * Print out an iq 'result'-type node. 412 * @return {?string} Pretty version of Iq result stanza. Null if error. 416 var iq = iq_list[0]; 417 var id = iq.getAttribute('id'); 418 var iq_children = iq.childNodes [all...] |
client_plugin.js | 92 * @param {string} iq Incoming IQ stanza. 94 remoting.ClientPlugin.prototype.onIncomingIq = function(iq) {};
|
client_session.js | 449 /** @param {string} msg The IQ stanza to send. */ 513 '<cli:iq ' + 525 '</cli:iq>'); 719 * Sends an IQ stanza via the http xmpp proxy. 722 * @param {string} msg XML string of IQ stanza to send to server. 765 /** @param {string} stanza The IQ stanza received. */ [all...] |
client_plugin_async.js | 32 /** @param {string} iq The Iq stanza received from the host. */ 33 this.onOutgoingIqHandler = function (iq) {}; 193 if (typeof message.data['iq'] != 'string') { 197 this.onOutgoingIqHandler(message.data['iq']); 382 * @param {string} iq Incoming IQ stanza. 384 remoting.ClientPluginAsync.prototype.onIncomingIq = function(iq) { 387 { method: 'incomingIq', data: { iq: iq } })); [all...] |
/external/smack/src/org/jivesoftware/smackx/entitycaps/ |
EntityCapsManager.java | 28 import org.jivesoftware.smack.packet.IQ; 442 discoverInfo.setType(IQ.Type.RESULT);
|
/external/oprofile/events/i386/nehalem/ |
events | 72 event:0xA7 counters:0,1,2,3 um:one minimum:6000 name:BACLEAR_FORCE_IQ : Counts number of times a BACLEAR was forced by the Instruction Queue. The IQ is also responsible for providing conditional branch prediciton direction based on a static scheme and dynamic data provided by the L2 Branch Prediction Unit. If the conditional branch target is not found in the Target Array and the IQ predicts that the branch is taken, then the IQ will force the Branch Address Calculator to issue a BACLEAR. Each BACLEAR asserted by the BAC generates approximately an 8 cycle bubble in the instruction fetch pipeline.
|
/external/chromium_org/third_party/libjingle/source/talk/media/testdata/ |
h264-svc-99-640x360.rtpdump | 562 ???l???U0???0??ap??PpD?ws[?o9a+n_M?mI?. ?}?zV[?‰?????s??|?p?6?5??q???E?2y??u?q???^????+?M???*MO?:??&??!????MO???L??j??,??S-nb`??>?f??f??H&??H?8hS??n:
g?~??K??U<@?v62?????Ov????Qz ???2?'`???:[?9?WYH????
RQ??R???1?!p??- ????%?!??? m?*??1?&???zK???$?_Y@t}????E?U?}? oK
?,?\A??uh8?%?cx_# Í??? ??~ b?6???T^???????k??$` ??J)0fV?R?? ??aS?? ?" Ej? e????iQ? ??G??[??`???????]?Vm (…) [all...] |