HomeSort by relevance Sort by last modified time
    Searched refs:SET (Results 51 - 75 of 169) sorted by null

1 23 4 5 6 7

  /external/smack/src/org/jivesoftware/smackx/bytestreams/socks5/
InitiationListener.java 44 new IQTypeFilter(IQ.Type.SET));
Socks5ClientForInitiator.java 109 activate.setType(IQ.Type.SET);
  /external/smack/src/org/jivesoftware/smackx/pubsub/
PubSubManager.java 84 PubSub reply = (PubSub)sendPubsubPacket(Type.SET, new NodeExtension(PubSubElementType.CREATE));
122 PubSub request = createPubsubPacket(to, Type.SET, new NodeExtension(PubSubElementType.CREATE, name));
136 sendPubsubPacket(con, to, Type.SET, request);
240 sendPubsubPacket(Type.SET, new NodeExtension(PubSubElementType.DELETE, nodeId), PubSubElementType.DELETE.getNamespace());
Node.java 114 PubSub packet = createPubsubPacket(Type.SET, new FormNode(FormNodeType.CONFIGURE_OWNER, getId(), submitForm), PubSubNamespace.OWNER);
167 PubSub reply = (PubSub)sendPubsubPacket(Type.SET, new SubscribeExtension(jid, getId()));
190 PubSub request = createPubsubPacket(Type.SET, new SubscribeExtension(jid, getId()));
192 PubSub reply = (PubSub)PubSubManager.sendPubsubPacket(con, jid, Type.SET, request);
222 sendPubsubPacket(Type.SET, new UnsubscribeExtension(jid, getId(), subscriptionId));
  /external/chromium_org/v8/tools/oom_dump/
oom_dump.cc 50 #define SET(type) names[type] = #type;
51 INSTANCE_TYPE_LIST(SET)
52 #undef SET
  /external/smack/src/org/jivesoftware/smack/
AccountManager.java 37 import java.util.Set;
107 * All attributes must be set when creating new accounts. The standard set of possible
188 * number. In that case, Smack will attempt to automatically set all required
227 reg.setType(IQ.Type.SET);
257 reg.setType(IQ.Type.SET);
291 reg.setType(IQ.Type.SET);
PrivacyListManager.java 35 * <li>Set, change, or decline active lists.
36 * <li>Set, change, or decline the default list (i.e., the list that is active by default).
51 PacketFilter packetFilter = new AndFilter(new IQTypeFilter(IQ.Type.SET),
67 * get or set the privacy communication.<p>
84 * Initializes the packet listeners of the connection that will notify for any set privacy
218 requestPrivacy.setType(Privacy.Type.SET);
329 Set<String> names = privacyAnswer.getPrivacyListNames();
346 * Set or change the active list to listName.
348 * @param listName the list name to set as the active one.
377 * Set or change the default list to listName.
    [all...]
RosterEntry.java 92 packet.setType(IQ.Type.SET);
237 // Set the correct group names for the item.
  /bionic/libc/bionic/
fts.c 62 #define SET(opt) (sp->fts_options |= (opt))
95 SET(FTS_NOCHDIR);
150 * finished the node before the root(s); set p->fts_info to FTS_INIT
166 SET(FTS_NOCHDIR);
188 * actually enter the directory until after the preorder visit, set
267 /* Set current node pointer. */
325 * to make the names come out right, and set the parent errno
327 * Set the FTS_DONTCHDIR flag so that when we logically change
362 SET(FTS_STOP);
401 * Done; free everything up and set errno to 0 so the use
    [all...]
  /frameworks/av/media/libstagefright/
AwesomePlayer.cpp 319 modifyFlags(INCOGNITO, SET);
449 // Set the presentation/display size
491 modifyFlags(AUTO_LOOPING, SET);
544 modifyFlags(PREPARE_CANCELLED, SET);
755 modifyFlags(CACHE_UNDERRUN, SET);
808 modifyFlags(CACHE_UNDERRUN, SET);
869 modifyFlags(AT_EOS, SET);
915 modifyFlags(AT_EOS, SET);
946 modifyFlags(PLAYING, SET);
947 modifyFlags(FIRST_FRAME, SET);
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/web_request/
web_request_api_unittest.cc 613 // Set up a dummy extension name.
701 // Set up a dummy extension name.
753 SET,
    [all...]
  /external/chromium_org/net/tools/testserver/
minica.py 79 asn1.SET([
88 asn1.SET([
97 asn1.SET([
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
ASN1TaggedObject.java 198 case BERTags.SET:
ASN1InputStream.java 175 case SET:
260 case SET:
  /external/smack/src/org/jivesoftware/smackx/commands/
RemoteCommand.java 144 data.setType(IQ.Type.SET);
164 throw new XMPPException("No response from server on status set.");
  /external/smack/src/org/jivesoftware/smackx/filetransfer/
FileTransferManager.java 94 new IQTypeFilter(IQ.Type.SET)));
IBBTransferNegotiator.java 133 // packet must by of type SET and contains the given session ID
135 && IQ.Type.SET.equals(bytestream.getType());
Socks5TransferNegotiator.java 144 // packet must by of type SET and contains the given session ID
146 && IQ.Type.SET.equals(bytestream.getType());
  /external/smack/src/org/jivesoftware/smackx/workgroup/agent/
Agent.java 54 throw new XMPPException("No response from server on status set.");
98 throw new XMPPException("No response from server on status set.");
118 agentInfo.setType(IQ.Type.SET);
131 throw new XMPPException("No response from server on status set.");
  /external/chromium_org/google_apis/gcm/base/
mcs_util.cc 86 stream_ack_iq->set_type(mcs_proto::IqStanza::SET);
96 selective_ack_iq->set_type(mcs_proto::IqStanza::SET);
  /external/smack/src/org/jivesoftware/smackx/search/
UserSearch.java 81 throw new XMPPException("No response from server on status set.");
101 search.setType(IQ.Type.SET);
114 throw new XMPPException("No response from server on status set.");
137 search.setType(IQ.Type.SET);
149 throw new XMPPException("No response from server on status set.");
  /external/clang/lib/Analysis/
LiveVariables.cpp 129 template <typename SET>
130 SET mergeSets(SET A, SET B) {
134 for (typename SET::iterator it = B.begin(), ei = B.end(); it != ei; ++it) {
248 static void AddLiveStmt(llvm::ImmutableSet<const Stmt *> &Set,
251 Set = F.add(Set, LookThroughStmt(S));
  /external/chromium_org/third_party/sqlite/src/test/
boundary4.tcl 18 set testdir [file dirname $argv0]
40 set x [expr {wide($x)}]
41 set boundarynum($x) 1
42 set boundarynum([expr {$x+1}]) 1
43 set boundarynum([expr {-($x+1)}]) 1
44 set boundarynum([expr {-($x+2)}]) 1
45 set boundarynum([expr {$x+$x+1}]) 1
46 set boundarynum([expr {$x+$x+2}]) 1
48 set x [expr {wide(127)}]
49 for {set i 127} {$i<=9} {incr i}
    [all...]
  /external/smack/src/org/jivesoftware/smackx/carbons/
CarbonManager.java 92 setIQ.setType(IQ.Type.SET);
  /external/smack/src/org/jivesoftware/smackx/packet/
StreamInitiation.java 45 * present on type='set', and MUST be a valid string. This SHOULD NOT be
138 if (this.getType().equals(IQ.Type.SET)) {

Completed in 1486 milliseconds

1 23 4 5 6 7