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

1 23 4 5 6 7 8 91011>>

  /external/apache-http/src/org/apache/http/client/protocol/
ClientContextConfigurer.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
49 this.context = context;
53 this.context.setAttribute(COOKIESPEC_REGISTRY, registry);
57 this.context.setAttribute(AUTHSCHEME_REGISTRY, registry);
61 this.context.setAttribute(COOKIE_STORE, store);
65 this.context.setAttribute(CREDS_PROVIDER, provider);
69 this.context.setAttribute(AUTH_SCHEME_PREF, list)
    [all...]
  /external/apache-http/src/org/apache/http/impl/
AbstractHttpClientConnection.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
81 this.entityserializer = createEntitySerializer();
82 this.entitydeserializer = createEntityDeserializer();
124 this.inbuffer = inbuffer;
125 this.outbuffer = outbuffer;
126 this.responseParser = createResponseParser(
130 this.requestWriter = createRequestWriter
    [all...]
AbstractHttpServerConnection.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
81 this.entityserializer = createEntitySerializer();
82 this.entitydeserializer = createEntityDeserializer();
125 this.inbuffer = inbuffer;
126 this.outbuffer = outbuffer;
127 this.requestParser = createRequestParser(
131 this.responseWriter = createResponseWriter
    [all...]
  /external/apache-http/src/org/apache/http/impl/cookie/
AbstractCookieSpec.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
62 this.attribHandlerMap = new HashMap<String, CookieAttributeHandler>(10);
73 this.attribHandlerMap.put(name, handler);
85 return this.attribHandlerMap.get(name);
107 return this.attribHandlerMap.values();
  /external/apache-http/src/org/apache/http/impl/io/
HttpRequestParser.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
62 this.requestFactory = requestFactory;
63 this.lineBuf = new CharArrayBuffer(128);
70 this.lineBuf.clear();
71 int i = sessionBuffer.readLine(this.lineBuf);
75 ParserCursor cursor = new ParserCursor(0, this.lineBuf.length());
76 RequestLine requestline = this.lineParser.parseRequestLine(this.lineBuf, cursor)
    [all...]
HttpResponseParser.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
62 this.responseFactory = responseFactory;
63 this.lineBuf = new CharArrayBuffer(128);
70 this.lineBuf.clear();
71 int i = sessionBuffer.readLine(this.lineBuf);
76 ParserCursor cursor = new ParserCursor(0, this.lineBuf.length());
77 StatusLine statusline = lineParser.parseStatusLine(this.lineBuf, cursor)
    [all...]
  /external/apache-http/src/org/apache/http/protocol/
BasicHttpContext.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
52 this(null);
57 this.parentContext = parentContext;
65 if (this.map != null) {
66 obj = this.map.get(id);
68 if (obj == null && this.parentContext != null) {
69 obj = this.parentContext.getAttribute(id)
    [all...]
BasicHttpProcessor.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
68 if (this.requestInterceptors == null) {
69 this.requestInterceptors = new ArrayList();
71 this.requestInterceptors.add(itcp);
84 if (this.requestInterceptors == null) {
88 this.requestInterceptors = new ArrayList();
90 this.requestInterceptors.add(index, itcp)
    [all...]
DefaultedHttpContext.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
54 this.local = local;
55 this.defaults = defaults;
59 Object obj = this.local.getAttribute(id);
61 return this.defaults.getAttribute(id);
68 return this.local.removeAttribute(id);
72 this.local.setAttribute(id, obj)
    [all...]
  /external/blktrace/btt/
devmap.c 6 * This program is free software; you can redistribute it and/or modify
11 * This program is distributed in the hope that it will be useful,
17 * along with this program; if not, write to the Free Software
50 char this[128]; local
53 sprintf(this, "%u,%u", MAJOR(device), MINOR(device));
57 if (!strcmp(this, dmp->devno))
dip_rb.c 6 * This program is free software; you can redistribute it and/or modify
11 * This program is distributed in the hope that it will be useful,
17 * along with this program; if not, write to the Free Software
68 void (*fnc)(struct io *iop, struct io *this),
72 struct io *this = rb_entry(n, struct io, rb_node); local
74 __u64 this_s = BIT_START(this), this_e = BIT_END(this);
77 if (fnc) fnc(iop, this);
79 list_add_tail(&this->f_head, head);
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/
DERSet.java 26 this.addObject(obj);
35 this(v, true);
46 this.addObject(a[i]);
49 this.sort();
61 this.addObject(v.get(i));
66 this.sort();
74 * be used for structured types, this varies slightly from the
85 Enumeration e = this.getObjects();
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/x509/
X509ExtensionsGenerator.java 44 this.addExtension(oid, critical, value.getDERObject().getEncoded(ASN1Encodable.DER));
75 * Return true if there are no extension present in this generator.
  /external/nist-sip/java/gov/nist/javax/sip/parser/
AcceptParser.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
77 this.lexer.SPorHT();
78 this.lexer.match(TokenTypes.ID);
81 this.lexer.match('/');
82 this.lexer.match(TokenTypes.ID);
85 this.lexer.SPorHT();
91 this.lexer.match(',')
    [all...]
AlertInfoParser.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
84 this.lexer.SPorHT();
85 if (this.lexer.lookAhead(0) == '<') {
86 this.lexer.match('<');
87 urlParser = new URLParser((Lexer) this.lexer);
90 this.lexer.match('>');
92 /* This is non standard for Polycom support.
    [all...]
AllowEventsParser.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
77 this.lexer.SPorHT();
78 this.lexer.match(TokenTypes.ID);
83 this.lexer.SPorHT();
85 this.lexer.match(',');
86 this.lexer.SPorHT();
89 this.lexer.match(TokenTypes.ID)
    [all...]
AllowParser.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
76 this.lexer.SPorHT();
77 this.lexer.match(TokenTypes.ID);
82 this.lexer.SPorHT();
84 this.lexer.match(',');
85 this.lexer.SPorHT();
88 this.lexer.match(TokenTypes.ID)
    [all...]
AuthenticationInfoParser.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
76 this.lexer.SPorHT();
80 this.lexer.SPorHT();
82 this.lexer.match(',');
83 this.lexer.SPorHT();
87 this.lexer.SPorHT();
89 this.lexer.SPorHT()
    [all...]
CallIDParser.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
66 this.lexer.match(TokenTypes.CALL_ID);
67 this.lexer.SPorHT();
68 this.lexer.match(':');
69 this.lexer.SPorHT();
73 this.lexer.SPorHT();
103 * CVS: If this change addresses one or more issues
    [all...]
CallInfoParser.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
76 this.lexer.SPorHT();
77 this.lexer.match('<');
78 URLParser urlParser=new URLParser((Lexer)this.lexer);
81 this.lexer.match('>');
82 this.lexer.SPorHT();
88 this.lexer.match(',')
    [all...]
ContactParser.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.
51 this.lexer = lexer;
63 this.lexer.match('*');
72 this.lexer.SPorHT();
75 this.lexer.match(',');
76 this.lexer.SPorHT();
ContentLanguageParser.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
75 this.lexer.SPorHT();
76 this.lexer.match(TokenTypes.ID);
80 this.lexer.SPorHT();
84 this.lexer.match(',');
85 this.lexer.SPorHT();
86 this.lexer.match(TokenTypes.ID)
    [all...]
ErrorInfoParser.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
79 this.lexer.SPorHT();
80 this.lexer.match('<');
81 URLParser urlParser = new URLParser((Lexer) this.lexer);
84 this.lexer.match('>');
85 this.lexer.SPorHT();
91 this.lexer.match(',')
    [all...]
EventParser.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
72 this.lexer.SPorHT();
75 this.lexer.match(TokenTypes.ID);
82 this.lexer.SPorHT();
83 this.lexer.match('\n');
111 * CVS: If this change addresses one or more issues,
114 * CVS: If this change has been taken from another system
    [all...]
FromParser.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
55 this.lexer.match(TokenTypes.FROM);
56 this.lexer.SPorHT();
57 this.lexer.match(':');
58 this.lexer.SPorHT();
60 this.lexer.match('\n');
92 * CVS: If this change addresses one or more issues
    [all...]

Completed in 1194 milliseconds

1 23 4 5 6 7 8 91011>>