HomeSort by relevance Sort by last modified time
    Searched defs:this (Results 126 - 150 of 524) sorted by null

1 2 3 4 56 7 8 91011>>

  /frameworks/base/core/java/android/net/http/
AndroidHttpClientConnection.java 5 * you may not use this file except in compliance with the License.
84 this.entityserializer = new EntitySerializer(
111 this.socket = socket;
114 this.inbuffer = new SocketInputBuffer(socket, buffersize, params);
115 this.outbuffer = new SocketOutputBuffer(socket, buffersize, params);
122 this.requestWriter = new HttpRequestWriter(outbuffer, null, params);
124 this.metrics = new HttpConnectionMetricsImpl(
128 this.open = true;
146 if (this.open) {
152 if (!this.open)
    [all...]
  /libcore/luni/src/main/java/org/apache/xml/serializer/
TreeWalker.java 4 * distributed with this work for additional information
5 * regarding copyright ownership. The ASF licenses this file
7 * you may not use this file except in compliance with the License.
41 * This class does a pre-order walk of the DOM tree, calling a ContentHandler
44 * This class is a copy of the one in org.apache.xml.utils.
56 * If m_contentHandler is a SerializationHandler, then this is
64 /** DomHelper for this TreeWalker */
67 /** Locator object for this TreeWalker */
81 this(ch,null);
139 this.m_contentHandler.startDocument()
    [all...]
  /external/proguard/src/proguard/classfile/io/
ProgramClassReader.java 7 * This program is free software; you can redistribute it and/or modify it
12 * This program is distributed in the hope that it will be useful, but WITHOUT
18 * with this program; if not, write to the Free Software Foundation, Inc.,
38 * This ClassVisitor fills out the ProgramClass objects that it visits with data
67 this.dataInput = new RuntimeDataInput(dataInput);
96 constant.accept(programClass, this);
130 this.visitProgramField(programClass, programField);
141 this.visitProgramMethod(programClass, programMethod);
152 attribute.accept(programClass, this);
179 attribute.accept(programClass, programField, this);
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/stack/
SIPServerTransaction.java 4 * This software was developed by employees of the National Institute of
11 * This software is provided by NIST as a service and is expressly
20 * Permission to use this software is contingent upon your acceptance
21 * of the terms of this agreement
207 * This timer task is used for alerting the application to send retransmission alerts.
221 this.ticks = SIPTransaction.T1;
222 this.ticksLeft = this.ticks;
226 SIPServerTransaction serverTransaction = SIPServerTransaction.this;
230 this.ticksLeft = 2 * ticks
    [all...]
SIPDialog.java 4 * This software was developed by employees of the National Institute of
11 * This software is provided by NIST as a service and is expressly
20 * Permission to use this software is contingent upon your acceptance
21 * of the terms of this agreement
110 * Bugs in this class were reported by Antonis Karydas, Brad Templeton, Jeff Adams, Alex Rootham ,
122 * dialog identifier that can be used to retrieve this structure from the SipStack.
197 // This is for debugging only.
220 // the amount of time to keep this dialog around before the stack GC's it
258 // List of event listeners for this dialog
279 * This task waits till a pending ACK has been recorded and then sends out a re-INVITE. Thi
    [all...]
  /external/apache-http/src/org/apache/http/client/methods/
HttpRequestBase.java 9 * distributed with this work for additional information
10 * regarding copyright ownership. The ASF licenses this file
12 * "License"); you may not use this file except in compliance
25 * This software consists of voluntary contributions made by many
72 this.abortLock = new ReentrantLock();
82 return this.uri;
100 this.uri = uri;
105 this.abortLock.lock();
107 if (this.aborted) {
111 this.releaseTrigger = null
    [all...]
  /external/apache-http/src/org/apache/http/impl/client/
RequestWrapper.java 9 * distributed with this work for additional information
10 * regarding copyright ownership. The ASF licenses this file
12 * "License"); you may not use this file except in compliance
25 * This software consists of voluntary contributions made by many
51 * This class is also capable of resetting the request headers to
74 this.original = request;
78 this.uri = ((HttpUriRequest) request).getURI();
79 this.method = ((HttpUriRequest) request).getMethod();
80 this.version = null;
84 this.uri = new URI(requestLine.getUri())
    [all...]
  /external/apache-http/src/org/apache/http/impl/io/
ChunkedOutputStream.java 9 * distributed with this work for additional information
10 * regarding copyright ownership. The ASF licenses this file
12 * "License"); you may not use this file except in compliance
25 * This software consists of voluntary contributions made by many
74 this.cache = new byte[bufferSize];
75 this.out = out;
87 this(out, 2048);
96 if (this.cachePosition > 0) {
97 this.out.writeLine(Integer.toHexString(this.cachePosition))
    [all...]
AbstractMessageWriter.java 9 * distributed with this work for additional information
10 * regarding copyright ownership. The ASF licenses this file
12 * "License"); you may not use this file except in compliance
25 * This software consists of voluntary contributions made by many
60 this.sessionBuffer = buffer;
61 this.lineBuf = new CharArrayBuffer(128);
62 this.lineFormatter = (formatter != null) ?
78 this.sessionBuffer.writeLine
79 (lineFormatter.formatHeader(this.lineBuf, header));
81 this.lineBuf.clear()
    [all...]
  /external/apache-http/src/org/apache/http/message/
AbstractHttpMessage.java 9 * distributed with this work for additional information
10 * regarding copyright ownership. The ASF licenses this file
12 * "License"); you may not use this file except in compliance
25 * This software consists of voluntary contributions made by many
59 this.headergroup = new HeaderGroup();
60 this.params = params;
64 this(null);
69 return this.headergroup.containsHeader(name);
74 return this.headergroup.getHeaders(name);
79 return this.headergroup.getFirstHeader(name)
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/openssl/
PEMWriter.java 52 this(out, "BC");
61 this.provider = provider;
71 this.write((char)bytes[i]);
95 this.write(buf, 0, index);
96 this.newLine();
299 this.write("Proc-Type: 4,ENCRYPTED");
300 this.newLine();
301 this.write("DEK-Info: " + dekAlgName + ",");
302 this.writeHexEncoded(iv);
303 this.newLine()
    [all...]
  /frameworks/base/core/java/android/app/backup/
BackupAgent.java 5 * you may not use this file except in compliance with the License.
47 * This notifies the Android Backup Manager that the application needs an opportunity
60 * that process, and the agent's {@link #onCreate()} method is invoked. This prepares the
61 * agent instance to run the actual backup or restore logic. At this point the
99 * Agents do not need to override this method.
108 * Agents do not need to override this method.
119 * cases, a representation of the final backup state after this pass should
137 * write to this file.
154 * replacing it with the data supplied to this method. No "clear user data"
156 * exception to this is in the case of a failed restore attempt: i
    [all...]
  /frameworks/base/core/java/android/os/storage/
IMountServiceListener.java 5 * you may not use this file except in compliance with the License.
38 this.attachInterface(this, DESCRIPTOR);
57 return this;
72 this.onUsbMassStorageConnectionChanged(connected);
84 this.onStorageStateChanged(path, oldState, newState);
IObbActionListener.java 5 * you may not use this file except in compliance with the License.
38 this.attachInterface(this, DESCRIPTOR);
57 return this;
76 this.onObbResult(filename, nonce, status);
  /frameworks/base/telephony/tests/telephonytests/src/com/android/internal/telephony/gsm/
GSMTestHandler.java 5 * you may not use this file except in compliance with the License.
32 * This class creates a HandlerThread which waits for the various messages.
56 mHandler = new Handler(getLooper(), this);
57 synchronized (this) {
63 synchronized (this) {
65 this.notifyAll();
68 this.wait();
99 synchronized (this) {
101 this.wait(FAIL_TIMEOUT_MILLIS);
112 this.notifyAll()
    [all...]
  /frameworks/base/tests/SslLoad/src/com/android/sslload/
SslLoad.java 5 * you may not use this file except in compliance with the License.
55 Thread requestThread = new Thread(this);
59 button = new Button(this);
61 button.setOnClickListener(this);
70 synchronized (this) {
76 synchronized (this) {
80 this.notifyAll();
88 synchronized (this) {
91 this.wait();
  /cts/tests/src/android/os/cts/
TestThread.java 5 * you may not use this file except in compliance with the License.
75 this.join(runTime);
76 if (this.isAlive()) {
77 this.interrupt();
78 this.join(runTime);
  /external/apache-http/src/org/apache/http/impl/conn/
DefaultResponseParser.java 9 * distributed with this work for additional information
10 * regarding copyright ownership. The ASF licenses this file
12 * "License"); you may not use this file except in compliance
25 * This software consists of voluntary contributions made by many
66 this.responseFactory = responseFactory;
67 this.lineBuf = new CharArrayBuffer(128);
68 this.maxGarbageLines = params.getIntParameter(
77 this.lineBuf.clear();
82 int i = sessionBuffer.readLine(this.lineBuf);
87 cursor = new ParserCursor(0, this.lineBuf.length())
    [all...]
LoggingSessionInputBuffer.java 10 * this work for additional information regarding copyright ownership.
11 * The ASF licenses this file to You under the Apache License, Version 2.0
12 * (the "License"); you may not use this file except in compliance with
24 * This software consists of voluntary contributions made by many
63 this.in = in;
64 this.wire = wire;
68 return this.in.isDataAvailable(timeout);
72 int l = this.in.read(b, off, len);
73 if (this.wire.enabled() && l > 0) {
74 this.wire.input(b, off, l)
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/
From.java 4 * This software was developed by employees of the National Institute of
11 * This software is provided by NIST as a service and is expressly
20 * Permission to use this software is contingent upon your acceptance
21 * of the terms of this agreement
97 * Warning -- this assumes that the embedded URI is a SipURL.
141 this.address = (AddressImpl) address;
151 this.setParameter(ParameterNames.TAG, t);
To.java 4 * This software was developed by employees of the National Institute of
11 * This software is provided by NIST as a service and is expressly
20 * Permission to use this software is contingent upon your acceptance
21 * of the terms of this agreement
113 * Warning -- this assumes that the embedded URI is a SipURL.
168 * Set the tag member. This should remain empty for the initial request in
176 this.setParameter(ParameterNames.TAG, t);
  /external/nist-sip/java/gov/nist/javax/sip/parser/
AcceptEncodingParser.java 4 * This software was developed by employees of the National Institute of
11 * This software is provided by NIST as a service and is expressly
20 * Permission to use this software is contingent upon your acceptance
21 * of the terms of this agreement
93 // empty body is fine for this header.
108 this.lexer.match(';');
109 this.lexer.SPorHT();
110 this.lexer.match('q');
111 this.lexer.SPorHT();
112 this.lexer.match('=')
    [all...]
AcceptLanguageParser.java 4 * This software was developed by employees of the National Institute of
11 * This software is provided by NIST as a service and is expressly
20 * Permission to use this software is contingent upon your acceptance
21 * of the terms of this agreement
102 this.lexer.match(';');
103 this.lexer.SPorHT();
104 this.lexer.match('q');
105 this.lexer.SPorHT();
106 this.lexer.match('=');
107 this.lexer.SPorHT()
    [all...]
AddressParser.java 4 * This software was developed by employees of the National Institute of
11 * This software is provided by NIST as a service and is expressly
20 * Permission to use this software is contingent upon your acceptance
21 * of the terms of this agreement
41 this.lexer = lexer;
42 this.lexer.selectLexer("charLexer");
46 this.lexer = new Lexer("charLexer", address);
53 if (this.lexer.lookAhead(0) == '<') {
54 this.lexer.consume(1);
55 this.lexer.selectLexer("sip_urlLexer")
    [all...]
CSeqParser.java 4 * This software was developed by employees of the National Institute of
11 * This software is provided by NIST as a service and is expressly
20 * Permission to use this software is contingent upon your acceptance
21 * of the terms of this agreement
59 this.lexer.match(TokenTypes.CSEQ);
60 this.lexer.SPorHT();
61 this.lexer.match(':');
62 this.lexer.SPorHT();
63 String number = this.lexer.number();
65 this.lexer.SPorHT()
    [all...]

Completed in 825 milliseconds

1 2 3 4 56 7 8 91011>>