HomeSort by relevance Sort by last modified time
    Searched refs:StreamError (Results 1 - 14 of 14) sorted by null

  /external/smack/src/org/jivesoftware/smack/packet/
StreamError.java 83 public class StreamError {
87 public StreamError(String code) {
  /external/smack/src/org/jivesoftware/smack/
XMPPException.java 23 import org.jivesoftware.smack.packet.StreamError;
37 * is sent to the client an XMPPException will be thrown containing the StreamError sent
45 private StreamError streamError = null;
81 * @param streamError the root cause of the exception.
83 public XMPPException(StreamError streamError) {
85 this.streamError = streamError;
148 * Returns the StreamError asscociated with this exception, or <tt>null</tt> if ther
    [all...]
ReconnectionManager.java 20 import org.jivesoftware.smack.packet.StreamError;
195 StreamError error = xmppEx.getStreamError();
  /external/chromium_org/media/audio/cras/
cras_input.h 55 static int StreamError(cras_client* client,
64 // Deals with an error that occured in the stream. Called from StreamError().
cras_unified.h 61 static int StreamError(cras_client* client,
83 // Deals with an error that occured in the stream. Called from StreamError().
cras_input.cc 136 CrasInputStream::StreamError,
192 int CrasInputStream::StreamError(cras_client* client,
cras_unified.cc 218 CrasUnifiedStream::StreamError,
307 int CrasUnifiedStream::StreamError(cras_client* client,
  /external/smack/src/org/jivesoftware/smack/util/
PacketParserUtils.java.orig 44 import org.jivesoftware.smack.packet.StreamError;
698 public static StreamError parseStreamError(XmlPullParser parser) throws IOException,
700 StreamError streamError = null;
706 streamError = new StreamError(parser.getName());
714 return streamError;
    [all...]
PacketParserUtils.java 43 import org.jivesoftware.smack.packet.StreamError;
697 public static StreamError parseStreamError(XmlPullParser parser) throws IOException,
699 StreamError streamError = null;
705 streamError = new StreamError(parser.getName());
713 return streamError;
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
tarfile.py 338 class StreamError(TarError):
556 raise StreamError("seeking backwards is not allowed")
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
tarfile.py 338 class StreamError(TarError):
556 raise StreamError("seeking backwards is not allowed")
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_tarfile.py 371 self.assertRaises(tarfile.StreamError, f.read)
385 self.assertRaises(tarfile.StreamError, tar2.extractfile, t2)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_tarfile.py 371 self.assertRaises(tarfile.StreamError, f.read)
385 self.assertRaises(tarfile.StreamError, tar2.extractfile, t2)
    [all...]
  /external/chromium_org/net/spdy/
spdy_stream_unittest.cc 234 TEST_P(SpdyStreamTest, StreamError) {
    [all...]

Completed in 1381 milliseconds