/external/jetty/src/java/org/eclipse/jetty/continuation/ |
Servlet3Continuation.java | 47 private AsyncContext _context; field in class:Servlet3Continuation 111 if (_context!=null) 112 _context.addListener(wrapped); 120 AsyncContext context=_context; 123 _context.complete(); 166 AsyncContext context=_context; 170 _context.dispatch(); 177 if (_context!=null) 178 _context.setTimeout(timeoutMs); 188 _context=_request.startAsync() [all...] |
ContinuationFilter.java | 60 ServletContext _context; field in class:ContinuationFilter 66 _context = filterConfig.getServletContext(); 85 _faux=!(jetty_7_or_greater || _jetty6 || _context.getMajorVersion()>=3); 89 _context.log("ContinuationFilter "+ 150 _context.log(string); 159 _context.log(string+":"+th); 161 _context.log(string,th);
|
/external/pdfium/core/src/fxge/apple/ |
fx_quartz_device.cpp | 141 _context = context; 143 CGContextRetain(_context); 151 CGImageRef image = CGBitmapContextCreateImage(_context); 165 CGAffineTransform ctm = CGContextGetCTM(_context); 166 CGContextSaveGState(_context); 172 CGContextTranslateCTM(_context, -offset_x, -offset_y); 173 CGContextConcatCTM(_context, CGAffineTransformMake(1, 0, 0, -1, offset_x, 180 CGContextRestoreGState(_context); 183 CGContextRestoreGState(_context); 185 if (_context) { [all...] |
/external/jetty/src/java/org/eclipse/jetty/servlets/ |
ConcatServlet.java | 69 ServletContext _context; field in class:ConcatServlet 75 _context=getServletContext(); 102 String t = _context.getMimeType(parts[i]); 120 RequestDispatcher dispatcher=_context.getRequestDispatcher(parts[i]);
|
PutFilter.java | 72 private ServletContext _context; field in class:PutFilter 82 _context=config.getServletContext(); 84 _tmpdir=(File)_context.getAttribute("javax.servlet.context.tempdir"); 86 if (_context.getRealPath("/")==null) 96 File base=new File(_context.getRealPath("/")); 160 _context.log(e.toString(),e); 248 _context.log(ex.toString(),ex); 262 _context.log(e.toString(),e); 286 _context.log(sex.toString(),sex);
|
QoSFilter.java | 91 ServletContext _context; field in class:QoSFilter 108 _context=filterConfig.getServletContext(); 148 if (_context!=null && Boolean.parseBoolean(filterConfig.getInitParameter(MANAGED_ATTR_INIT_PARAM))) 149 _context.setAttribute(filterConfig.getFilterName(),this); 219 _context.log("QoS",e);
|
/external/webrtc/webrtc/modules/video_render/ios/ |
video_render_ios_view.mm | 21 EAGLContext* _context; 92 _context = [[EAGLContext alloc] initWithAPI:kEAGLRenderingAPIOpenGLES2]; 94 if (!_context) { 98 if (![EAGLContext setCurrentContext:_context]) { 109 [_context renderbufferStorage:GL_RENDERBUFFER 133 if (![_context presentRenderbuffer:GL_RENDERBUFFER]) { 146 if (![EAGLContext setCurrentContext:_context]) {
|
/packages/apps/Email/emailcommon/src/com/android/emailcommon/service/ |
AccountServiceProxy.java | 31 public AccountServiceProxy(Context _context) { 32 super(_context, getIntentForEmailPackage(_context, "ACCOUNT_INTENT"));
|
EmailServiceProxy.java | 77 public EmailServiceProxy(Context _context, Class<?> _class) { 78 super(_context, new Intent(_context, _class)); 79 TempDirectory.setTempDirectory(_context); 85 public EmailServiceProxy(Context _context, Intent _intent) { 86 super(_context, _intent); 88 Device.getDeviceId(_context); 91 TempDirectory.setTempDirectory(_context);
|
PolicyServiceProxy.java | 34 public PolicyServiceProxy(Context _context) { 35 super(_context, getIntentForEmailPackage(_context, "POLICY_INTENT"));
|
ServiceProxy.java | 90 public ServiceProxy(Context _context, Intent _intent) { 91 mContext = _context;
|
/external/jetty/src/java/org/eclipse/jetty/webapp/ |
WebAppClassLoader.java | 65 private final Context _context; field in class:WebAppClassLoader 146 _context=context; 188 return _context; 226 Resource resource= _context.newResource(tokenizer.nextToken().trim()); 297 PermissionCollection permissions=_context.getPermissions(); 305 boolean system_class=_context.isSystemClass(name); 306 boolean server_class=_context.isServerClass(name); 311 if (_context.isParentLoaderPriority()) 340 boolean system_class=_context.isSystemClass(name); 341 boolean server_class=_context.isServerClass(name) [all...] |
DiscoveredAnnotation.java | 37 protected WebAppContext _context; field in class:DiscoveredAnnotation 52 _context = context;
|
TagLibConfiguration.java | 88 private WebAppContext _context; field in class:TagLibConfiguration.TagLibListener 91 _context = context; 116 ClassLoader loader = _context.getClassLoader(); 123 Collection<Resource> tld_resources = (Collection<Resource>)_context.getAttribute(TLD_RESOURCES); 163 _context.addEventListener(l); 213 if (_context.getResourceAliases()!=null && 214 _context.getBaseResource()!=null && 215 _context.getBaseResource().exists()) 217 Iterator<String> iter=_context.getResourceAliases().values().iterator(); 225 Resource l=_context.getBaseResource().addPath(location) [all...] |
/external/chromium-trace/catapult/third_party/closure_linter/closure_linter/ |
ecmametadatapass.py | 242 self._context = None 248 return EcmaContext(context_type, self._token, self._context) 260 self._context = self._CreateContext(context_type) 271 top_context = self._context 273 self._context = top_context.parent 274 if self._context: 296 if self._context.type == EcmaContext.IMPLIED_BLOCK: 313 if self._context.type in EcmaContext.BLOCK_TYPES: 319 parent = self._context.parent 323 elif self._context.type == EcmaContext.ARRAY_LITERAL [all...] |
/external/jetty/src/java/org/eclipse/jetty/server/session/ |
AbstractSessionManager.java | 112 protected ContextHandler.Context _context; field in class:AbstractSessionManager 162 return _context; 168 return _context.getContextHandler(); 197 HttpCookie cookie=getSessionCookie(session,_context==null?"/":(_context.getContextPath()),secure); 233 _context=ContextHandler.getCurrentContext(); 253 if (_context!=null) 255 String tmp=_context.getInitParameter(SessionManager.__SessionCookieProperty); 259 tmp=_context.getInitParameter(SessionManager.__SessionIdPathParameterNameProperty); 266 tmp=_context.getInitParameter(SessionManager.__MaxAgeProperty) [all...] |
JDBCSessionManager.java | 153 _virtualHost = JDBCSessionManager.getVirtualHost(_context); 154 _canonicalContext = canonicalize(_context.getContextPath()); 482 session = loadSession(idInCluster, canonicalize(_context.getContextPath()), getVirtualHost(_context)); 487 session = loadSession(idInCluster, canonicalize(_context.getContextPath()), getVirtualHost(_context)); 865 if (_context==null) 868 _context.getContextHandler().handle(load); [all...] |
/external/webrtc/talk/app/webrtc/objc/ |
RTCOpenGLVideoRenderer.mm | 167 EAGLContext* _context; 169 NSOpenGLContext* _context; 202 _context = context; 228 [_context flushBuffer]; 272 NSAssert(_context, @"context shouldn't be nil"); 274 if ([EAGLContext currentContext] != _context) { 275 [EAGLContext setCurrentContext:_context]; 278 if ([NSOpenGLContext currentContext] != _context) { 279 [_context makeCurrentContext]; 391 BOOL hasUnpackRowLength = _context.API == kEAGLRenderingAPIOpenGLES3 [all...] |
/external/webrtc/webrtc/api/objc/ |
RTCOpenGLVideoRenderer.mm | 146 EAGLContext *_context; 148 NSOpenGLContext *_context; 183 _context = context; 209 [_context flushBuffer]; 253 NSAssert(_context, @"context shouldn't be nil"); 255 if ([EAGLContext currentContext] != _context) { 256 [EAGLContext setCurrentContext:_context]; 259 if ([NSOpenGLContext currentContext] != _context) { 260 [_context makeCurrentContext]; 373 BOOL hasUnpackRowLength = _context.API == kEAGLRenderingAPIOpenGLES3 [all...] |
/external/jetty/src/java/org/eclipse/jetty/server/ |
Request.java | 190 private ContextHandler.Context _context; field in class:Request 312 if (_context != null) 314 maxFormContentSize = _context.getContextHandler().getMaxFormContentSize(); 315 maxFormKeys = _context.getContextHandler().getMaxFormKeys(); 543 return _context; 855 if (_pathInfo == null || _context == null) 857 return _context.getRealPath(_pathInfo); 930 if (_context == null [all...] |
/external/mesa3d/src/egl/main/ |
egldriver.h | 61 _EGL_DRIVER_TYPECAST(drvname ## _context, _EGLContext, obj) \
|
/external/jetty/src/java/org/eclipse/jetty/xml/ |
XmlParser.java | 288 private Node _context = _top; field in class:XmlParser.Handler 301 _context = null; 314 Node node = new Node(_context, name, attrs); 331 _context.add(node); 332 _context = node; 341 _context.add(node); 342 _context = node; 358 _context = _context._parent; 376 _context.add(new String(buf, offset, len)) [all...] |
/external/jetty/src/java/org/eclipse/jetty/util/ssl/ |
SslContextFactory.java | 196 private SSLContext _context; field in class:SslContextFactory 240 if (_context == null) 255 _context = SSLContext.getInstance(_sslProtocol); 256 _context.init(null, trust_managers, secureRandom); 295 _context = (_sslProvider == null)?SSLContext.getInstance(_sslProtocol):SSLContext.getInstance(_sslProtocol,_sslProvider); 296 _context.init(keyManagers,trustManagers,secureRandom); 989 return _context; 1001 _context = sslContext; [all...] |
/external/jetty/src/java/org/eclipse/jetty/server/handler/ |
ResourceHandler.java | 63 ContextHandler _context; field in class:ResourceHandler 156 _context = (scontext==null?null:scontext.getContextHandler()); 158 if (_context!=null) 159 _aliases=_context.isAliases(); 297 if (_context==null) 299 base=_context.getBaseResource();
|
/external/libunwind/doc/ |
unw_getcontext.tex | 15 \Type{int} \Func{unw\_getcontext}(\Type{unw\_context\_t~*}\Var{ucp});\\ 31 On IA-64, \Type{unw\_context\_t} has a layout that is compatible with
|