/external/jetty/src/java/org/eclipse/jetty/io/bio/ |
D | SocketEndPoint.java | 37 final InetSocketAddress _local; field in SocketEndPoint 49 _local=(InetSocketAddress)_socket.getLocalSocketAddress(); in SocketEndPoint() 63 _local=(InetSocketAddress)_socket.getLocalSocketAddress(); in SocketEndPoint() 174 if (_local==null || _local.getAddress()==null || _local.getAddress().isAnyLocalAddress()) in getLocalAddr() 177 return _local.getAddress().getHostAddress(); in getLocalAddr() 187 if (_local==null || _local.getAddress()==null || _local.getAddress().isAnyLocalAddress()) in getLocalHost() 190 return _local.getAddress().getCanonicalHostName(); in getLocalHost() 200 if (_local==null) in getLocalPort() 202 return _local.getPort(); in getLocalPort() 284 return _local + " <--> " + _remote; in toString()
|
/external/libunwind/doc/ |
D | unw_init_local.tex | 8 \begin{Name}{3}{unw\_init\_local}{David Mosberger-Tang}{Programming Library}{unw\_init\_local}unw\_… 15 \Type{int} \Func{unw\_init\_local}(\Type{unw\_cursor\_t~*}\Var{c}, \Type{unw\_context\_t~*}\Var{ctx… 19 The \Func{unw\_init\_local}() routine initializes the unwind cursor 26 The \Func{unw\_init\_local}() routine can be used only for unwinding in 41 \Func{unw\_init\_local}(). Also, \Func{unw\_init\_local}() is 48 On successful completion, \Func{unw\_init\_local}() returns 0. 54 \Func{unw\_init\_local}() is thread-safe as well as safe to use from a 60 \item[\Const{UNW\_EINVAL}] \Func{unw\_init\_local}() was called in a 62 (this normally happens when calling \Func{unw\_init\_local}() for a 65 \item[\Const{UNW\_EBADREG}] A register needed by \Func{unw\_init\_local}()
|
D | unw_init_remote.tex | 22 \Var{unw\_local\_addr\_space} (local address space) or to an arbitrary 26 should be unwound. For example, if \Var{unw\_local\_addr\_space} is 38 generally preferable to use \Func{unw\_init\_local}() instead, because 69 \SeeAlso{unw\_init\_local(3)}
|
D | unw_destroy_addr_space.tex | 24 \Var{unw\_local\_addr\_space}. Attempting to do so results in
|
D | unw_get_proc_info_by_ip.tex | 31 \Var{unw\_local\_addr\_space} can be passed for this argument. 39 \Var{unw\_local\_addr\_space}), \Const{NULL} must be passed for this
|
D | libunwind.tex | 18 \Type{int} \Func{unw\_init\_local}(\Type{unw\_cursor\_t~*}, \Type{unw\_context\_t~*});\\ 35 \Type{unw\_addr\_space\_t} \Var{unw\_local\_addr\_space};\\ 72 done with a call to \Func{unw\_init\_local}(). The cursor now points 187 \Func{unw\_init\_local}(), except that it takes an address-space 230 native case. Attempting to call, e.g., \Func{unw\_local\_init}() when 333 \SeeAlso{unw\_init\_local(3)},
|
D | unw_get_accessors.tex | 28 \Var{unw\_local\_addr\_space}.
|
D | unw_getcontext.tex | 53 \SeeAlso{unw\_init\_local(3)}
|
D | unw_set_caching_policy.tex | 46 \Func{unw\_local\_addr\_space}, caching is turned on by default.
|
/external/jetty/src/java/org/eclipse/jetty/io/nio/ |
D | ChannelEndPoint.java | 49 protected final InetSocketAddress _local; field in ChannelEndPoint 62 _local=(InetSocketAddress)_socket.getLocalSocketAddress(); in ChannelEndPoint() 68 _local=_remote=null; in ChannelEndPoint() 79 _local=(InetSocketAddress)_socket.getLocalSocketAddress(); in ChannelEndPoint() 85 _local=_remote=null; in ChannelEndPoint() 410 if (_local==null || _local.getAddress()==null || _local.getAddress().isAnyLocalAddress()) in getLocalAddr() 412 return _local.getAddress().getHostAddress(); in getLocalAddr() 423 if (_local==null || _local.getAddress()==null || _local.getAddress().isAnyLocalAddress()) in getLocalHost() 425 return _local.getAddress().getCanonicalHostName(); in getLocalHost() 436 if (_local==null) in getLocalPort() [all …]
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/ |
D | CollectionStore.java | 14 private Collection<T> _local; field in CollectionStore 24 _local = new ArrayList<T>(collection); in CollectionStore() 37 return new ArrayList<T>(_local); in getMatches() 42 Iterator<T> iter = _local.iterator(); in getMatches()
|
/external/chromium-trace/catapult/third_party/webapp2/ |
D | webapp2.py | 28 _webapp = _webapp_util = _local = None 51 _local = local.Local() variable 1498 if _local is not None: # pragma: no cover 1499 _local.app = app 1500 _local.request = request 1507 if _local is not None: # pragma: no cover 1508 _local.__release_local__() 1705 if _local: 1706 assert getattr(_local, 'app', None) is not None, _get_app_error 1719 if _local: [all …]
|
/external/chromium-trace/catapult/third_party/mapreduce/mapreduce/ |
D | context.py | 395 _local = threading.local() variable in Context 468 cls._local._context_instance = context 480 if not hasattr(Context._local, "_context_instance") : 482 return Context._local._context_instance
|
/external/autotest/server/site_tests/telemetry_AFDOGenerate/ |
D | telemetry_AFDOGenerate.py | 97 self._host, self._local) 151 self._local = False 167 self._local = (value == 'True')
|
/external/chromium-trace/catapult/third_party/pipeline/pipeline/ |
D | pipeline.py | 1148 _local = threading.local() variable in After 1166 After._local._after_all_futures.extend(self._futures) 1171 After._local._after_all_futures.remove(future) 1177 if not hasattr(cls._local, '_after_all_futures'): 1178 cls._local._after_all_futures = [] 1187 _local = threading.local() variable in InOrder 1196 if cls._local._activated: 1197 cls._local._in_order_futures.add(future) 1205 if InOrder._local._activated: 1207 InOrder._local._activated = True [all …]
|
/external/chromium-trace/catapult/third_party/webapp2/tests/ |
D | test_base.py | 83 webapp2._local.__release_local__()
|
/external/llvm/docs/CommandGuide/ |
D | lit.rst | 343 .. _local-configuration-files:
|
/external/guice/extensions/struts2/lib/ |
D | jetty-6.1.0.jar | META-INF/
META-INF/MANIFEST.MF
org/
org/mortbay/
org/ ... |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
D | org.mortbay.jetty.server_6.1.23.v201004211559.jar | META-INF/MANIFEST.MF
META-INF/ECLIPSEF.SF
META-INF/ECLIPSEF ... |
/external/llvm/lib/Target/AMDGPU/ |
D | SIInstrInfo.td | 231 def _local : local_binary_atomic_op <!cast<SDNode>(NAME#"_glue")>;
|
/external/google-tv-pairing-protocol/java/jar/ |
D | bcprov-jdk15-143.jar | META-INF/MANIFEST.MF
META-INF/BCKEY.SF
META-INF/BCKEY ... |