HomeSort by relevance Sort by last modified time
    Searched defs:this (Results 151 - 175 of 540) sorted by null

1 2 3 4 5 67 8 91011>>

  /sdk/monkeyrunner/src/com/android/monkeyrunner/recorder/
ActionListModel.java 5 * you may not use this file except in compliance with the License.
42 this.fireIntervalAdded(this, newIndex, newIndex);
  /external/nist-sip/java/gov/nist/javax/sip/parser/
PipelinedMsgParser.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
46 * This implements a pipelined message parser suitable for use with a stream -
47 * oriented input such as TCP. The client uses this class by instatiating with
52 * content-length header is read directly from the input stream. This can be
67 * The message listener that is registered with this parser. (The message
107 this();
108 this.sipMessageListener = sipMessageListener
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/stack/
TCPMessageProcessor.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
40 * Acknowledgement: Jeff Keyser suggested that a Stop mechanism be added to this. Niklas Uhrberg
49 * connection. This is the active object that creates new TCP MessageChannels (one for each new
76 * @param port port where this message processor listens.
81 this.sipStack = sipStack;
83 this.tcpMessageChannels = new Hashtable();
84 this.incomingTcpMessageChannels = new ArrayList<TCPMessageChannel>()
    [all...]
TLSMessageProcessor.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
26 /* This class is entirely derived from TCPMessageProcessor,
31 * Stop mechanism be added to this. Niklas Uhrberg suggested that
59 * connection. This is the active object that creates new TLS MessageChannels (one for each new
86 * @param port port where this message processor listens.
90 this.sipStack = sipStack;
91 this.tlsMessageChannels = new Hashtable<String, TLSMessageChannel>()
    [all...]
SIPClientTransaction.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
219 clientTransaction = SIPClientTransaction.this;
234 this.cancel();
242 // this is a TCP after the linger timer has expired.
258 // connection. This keeps the connection open permanently
268 // If this transaction has not
282 * @param newSIPStack Transaction stack this transaction belongs to
    [all...]
SIPTransactionStack.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
90 * This is the sip stack. It is essentially a management interface. It manages the resources for
91 * the JAIN-SIP implementation. This is the structure that is wrapped by the SipStackImpl.
107 * Connection linger time (seconds) this is the time (in seconds) for which we linger the TCP
126 // Global timer. Use this for all timer tasks.
182 * We support UDP on this stack.
187 * Internal router. Use this for all sip: request routing
    [all...]
  /frameworks/base/core/java/android/content/
AsyncTaskLoader.java 5 * you may not use this file except in compliance with the License.
34 * loads the currently installed applications from the package manager. This
38 * this (such as a locale change).
65 if (DEBUG) Slog.v(TAG, this + " >>> doInBackground");
66 result = AsyncTaskLoader.this.onLoadInBackground();
67 if (DEBUG) Slog.v(TAG, this + " <<< doInBackground");
74 if (DEBUG) Slog.v(TAG, this + " onPostExecute");
76 AsyncTaskLoader.this.dispatchOnLoadComplete(this, data);
84 if (DEBUG) Slog.v(TAG, this + " onCancelled")
    [all...]
  /frameworks/support/v4/java/android/support/v4/content/
AsyncTaskLoader.java 5 * you may not use this file except in compliance with the License.
32 * on Android 3.0 or above, this implementation is still used; it does not try
50 if (DEBUG) Log.v(TAG, this + " >>> doInBackground");
51 result = AsyncTaskLoader.this.onLoadInBackground();
52 if (DEBUG) Log.v(TAG, this + " <<< doInBackground");
59 if (DEBUG) Log.v(TAG, this + " onPostExecute");
61 AsyncTaskLoader.this.dispatchOnLoadComplete(this, data);
69 if (DEBUG) Log.v(TAG, this + " onCancelled");
71 AsyncTaskLoader.this.dispatchOnCancelled(this, result)
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
SlideshowDataAdapter.java 5 * you may not use this file except in compliance with the License.
97 synchronized (SlideshowDataAdapter.this) {
101 SlideshowDataAdapter.this.wait();
114 synchronized (SlideshowDataAdapter.this) {
122 synchronized (SlideshowDataAdapter.this) {
124 SlideshowDataAdapter.this.notifyAll();
134 synchronized (SlideshowDataAdapter.this) {
138 SlideshowDataAdapter.this.notifyAll();
149 synchronized (SlideshowDataAdapter.this) {
152 SlideshowDataAdapter.this.notifyAll()
    [all...]
  /external/apache-harmony/nio/src/test/java/common/org/apache/harmony/nio/tests/java/nio/channels/
SocketChannelTest.java 4 * this work for additional information regarding copyright ownership.
5 * The ASF licenses this file to You under the Apache License, Version 2.0
6 * (the "License"); you may not use this file except in compliance with
73 this.localAddr1 = new InetSocketAddress("127.0.0.1",
75 this.localAddr2 = new InetSocketAddress("127.0.0.1",
77 this.channel1 = SocketChannel.open();
78 this.channel2 = SocketChannel.open();
79 this.server1 = new ServerSocket(localAddr1.getPort());
84 if (null != this.channel1) {
86 this.channel1.close()
    [all...]
ChannelsTest.java 3 * this work for additional information regarding copyright ownership.
4 * The ASF licenses this file to You under the Apache License, Version 2.0
5 * (the "License"); you may not use this file except in compliance with
72 this.writeFileSame();
76 if (null != this.fins) {
77 this.fins.close();
78 this.fins = null;
80 if (null != this.fouts) {
81 this.fouts.close();
82 this.fouts = null
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/
DialogFilter.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
78 * purpose of this class is to do early rejection of bad messages and deliver meaningful messages
79 * to the application. This class is essentially a Dialog filter. It is a helper for the UAC Core.
81 * number, Dialog not found, etc. Note that this is not part of the JAIN-SIP spec (it does not
82 * implement a JAIN-SIP interface). This is part of the glue that ties together the NIST-SIP stack
83 * and event model with the JAIN-SIP stack. This is strictly an implementation class.
98 this.sipStack = sipStack
    [all...]
  /libcore/luni/src/main/java/java/util/
Timer.java 4 * this work for additional information regarding copyright ownership.
5 * The ASF licenses this file to You under the Apache License, Version 2.0
6 * (the "License"); you may not use this file except in compliance with
26 * this thread is busy running a task, runnable tasks may be subject to delays.
39 * previous run took place. This may result in a series of bunched-up runs
48 * <p>This class does not offer guarantees about the real-time nature of task
149 // re-try this point
190 this.setName(name);
191 this.setDaemon(isDaemon);
192 this.start()
    [all...]
  /packages/experimental/LoaderApp/src/com/android/loaderapp/model/
ContactsSource.java 5 * you may not use this file except in compliance with the License.
46 * In the future this may be inflated from XML defined by a data source.
67 * Set of {@link DataKind} supported by this source.
93 * Ensure that this {@link ContactsSource} has been inflated to the
109 * Invalidate any cache for this {@link ContactsSource}, removing all
114 this.mKinds.clear();
115 this.mMimeKinds.clear();
120 if (this.titleRes != -1 && this.summaryResPackageName != null) {
122 return pm.getText(this.summaryResPackageName, this.titleRes, null)
    [all...]
  /external/antlr/src/org/antlr/runtime/tree/
ParseTree.java 10 notice, this list of conditions and the following disclaimer.
12 notice, this list of conditions and the following disclaimer in the
15 derived from this software without specific prior written permission.
17 THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
26 THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
35 * end up as the leaves of this tree and rule nodes are the interior nodes.
36 * This really adds no functionality, it is just an alias for CommonTree
44 this.payload = label;
95 String nodeText = this.toString();
100 /** Print out the leaves of this tree, which means printing origina
    [all...]
  /external/apache-http/src/org/apache/http/conn/
EofSensorInputStream.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
44 * This class is based on <code>AutoCloseInputStream</code> in HttpClient 3.1,
77 * Indicates whether this stream itself is closed.
81 * the underlying stream. After closing this stream, read
120 * <code>false</code> if this stream is in EOF mode and
123 * @throws IOException if this stream is already closed
219 * This method should only be called while the underlying stream i
    [all...]
  /external/apache-http/src/org/apache/http/entity/
InputStreamEntity.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.content = instream;
61 this.length = length;
69 return this.length;
73 return this.content;
80 InputStream instream = this.content;
83 if (this.length < 0)
    [all...]
  /external/apache-http/src/org/apache/http/impl/client/
BasicCredentialsProvider.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
62 this.credMap = new HashMap<AuthScope, Credentials>();
128 return matchCredentials(this.credMap, authscope);
140 this.credMap.clear();
  /external/apache-http/src/org/apache/http/message/
BasicHeaderElementIterator.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.headerIt = headerIterator;
73 this.parser = parser;
78 this(headerIterator, BasicHeaderValueParser.DEFAULT);
83 this.cursor = null;
84 this.buffer = null;
85 while (this.headerIt.hasNext())
    [all...]
  /external/apache-http/src/org/apache/http/params/
BasicHttpParams.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
42 * This class represents a collection of HTTP protocol parameters.
57 /** Map of HTTP parameters that this collection contains. */
67 if (this.parameters != null) {
68 param = this.parameters.get(name);
74 if (this.parameters == null) {
75 this.parameters = new HashMap()
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/transformer/
CountersTable.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.
34 * This is a table of counters, keyed by ElemNumber objects, each
35 * of which has a list of Counter objects. This really isn't a true
61 Vector counters = (Vector) this.get(numberElem);
73 * for this number element.
80 this.put(numberElem, counters);
154 // of forward counting by one, this will mean a single node copy from
195 // If we got to this point, then we didn't find a counter, so make
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/axes/
ReverseAxesWalker.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.
38 * @param locPathIterator The location path iterator that 'owns' this walker.
49 * @param root The context node of this step.
85 this.m_foundLast = true;
92 * Tells if this is a reverse axes. Overrides AxesWalker#isReverseAxes.
94 * @return true for this class.
104 // * @param root The context node of this step.
113 * reverse axes count, for the moment this re-searches the axe
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/
DERUTCTime.java 59 * The correct format for this is YYMMDDHHMMSSZ (it used to be that seconds were
62 * the input stream... (this is why the input format is different from the getTime()
71 this.time = time;
74 this.getDate();
92 this.time = dateF.format(time);
108 this.time = new String(dateC);
155 * <b>Note:</b> In some cases, due to the local date processing, this
201 * return a time string as an adjusted date with a 4 digit year. This goes
206 String d = this.getTime();
235 out.writeEncoded(UTC_TIME, this.getOctets())
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/x509/
ExtendedKeyUsage.java 58 this.seq = new DERSequence(usage);
60 this.usageTable.put(usage, usage);
66 this.seq = seq;
77 this.usageTable.put(o, o);
92 this.usageTable.put(o, o);
95 this.seq = new DERSequence(v);
  /external/bouncycastle/src/main/java/org/bouncycastle/x509/
ExtendedPKIXParameters.java 20 * This class extends the PKIXParameters with a validity model parameter.
95 * @param params Parameters to set. If this are
138 * This is the default PKIX validity model. Actually there are two variants
139 * of this: The PKIX model and the modified PKIX model. The PKIX model
143 * with the {@link PKIXParameters#setDate(java.util.Date)} method, so this
150 * This model uses the following validity model. Each certificate must have
183 this.useDeltas = useDeltas;
197 * Sets the Java CertStore to this extended PKIX parameters.
229 this.stores = new ArrayList();
242 this.stores = new ArrayList(stores)
    [all...]

Completed in 3891 milliseconds

1 2 3 4 5 67 8 91011>>