Home
last modified time | relevance | path

Searched refs:_local (Results 1 – 25 of 28) sorted by relevance

12

/external/python/cpython3/Lib/test/
Dtest_threading_local.py31 local = self._local()
58 class Local(self._local):
74 class Local(self._local):
113 class MyLocal(self._local):
119 self.assertRaises(TypeError, self._local, a=1)
120 self.assertRaises(TypeError, self._local, 1)
159 self._test_one_class(self._local)
162 class LocalSubclass(self._local):
176 self._test_dict_attribute(self._local)
179 class LocalSubclass(self._local):
[all …]
/external/libunwind/doc/
Dunw_init_local.tex8 \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}()
Dunw_init_remote.tex22 \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)}
Dunw_get_proc_info_by_ip.tex31 \Var{unw\_local\_addr\_space} can be passed for this argument.
39 \Var{unw\_local\_addr\_space}), \Const{NULL} must be passed for this
Dunw_destroy_addr_space.tex24 \Var{unw\_local\_addr\_space}. Attempting to do so results in
Dlibunwind.tex18 \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)},
Dunw_get_accessors.tex28 \Var{unw\_local\_addr\_space}.
Dunw_getcontext.tex53 \SeeAlso{unw\_init\_local(3)}
Dunw_set_caching_policy.tex46 \Func{unw\_local\_addr\_space}, caching is turned on by default.
/external/python/cpython2/Lib/test/
Dtest_threading_local.py29 local = self._local()
56 class Local(self._local):
72 class Local(self._local):
110 from thread import _local as local
160 self._test_one_class(self._local)
163 class LocalSubclass(self._local):
177 self._test_dict_attribute(self._local)
180 class LocalSubclass(self._local):
186 _local = _thread._local variable in ThreadLocalTest
194 x.local = self._local()
[all …]
/external/libxcam/modules/soft/
Dsoft_worker.cpp107 , _local (1, 1, 1) in SoftWorker()
159 _local = size; in set_local_size()
175 XCAM_ASSERT (_local.value[0] * _local.value[1] * _local.value[2]); in work()
182 items.value[i] = xcam_ceil (_global.value[i], _local.value[i]) / _local.value[i]; in work()
240 range.pos[i] = item.value[i] * _local.value[i]; in get_range()
242 if (range.pos[i] + _local.value[i] > _global.value[i]) in get_range()
245 range.pos_len[i] = _local.value[i]; in get_range()
Dsoft_worker.h74 return _local; in get_local_size()
95 WorkSize _local; variable
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/util/
DCollectionStore.java16 private Collection<T> _local; field in CollectionStore
26 _local = new ArrayList<T>(collection); in CollectionStore()
39 return new ArrayList<T>(_local); in getMatches()
44 Iterator<T> iter = _local.iterator(); in getMatches()
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
DCollectionStore.java14 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/python/cpython3/Lib/asyncio/
Devents.py630 self._local = self._Local()
637 if (self._local._loop is None and
638 not self._local._set_called and
642 if self._local._loop is None:
646 return self._local._loop
650 self._local._set_called = True
652 self._local._loop = loop
Dunix_events.py1103 self._watcher.attach_loop(self._local._loop)
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/AArch64/
Dnonlazybind.ll13 ; CHECK: bl _local
20 ; CHECK-NORMAL: bl _local
/external/autotest/server/site_tests/telemetry_AFDOGenerate/
Dtelemetry_AFDOGenerate.py102 self._host, self._local, telemetry_on_dut=False)
160 self._local = False
176 self._local = (value == 'True')
/external/toolchain-utils/automation/clients/helper/
Dperforce.py66 return self._local
69 self._local = self._FixPath(path_s)
/external/python/cpython2/Lib/multiprocessing/
Dforking.py247 _tls = thread._local()
/external/python/cpython2/Lib/
Ddecimal.py440 def getcontext(_local=local): argument
448 return _local.__decimal_context__
451 _local.__decimal_context__ = context
454 def setcontext(context, _local=local): argument
459 _local.__decimal_context__ = context
Dthreading.py1197 from thread import _local as local
/external/python/cpython3/Lib/
Dthreading.py1302 from _thread import _local as local
/external/llvm/docs/CommandGuide/
Dlit.rst343 .. _local-configuration-files:
/external/swiftshader/third_party/llvm-7.0/llvm/docs/CommandGuide/
Dlit.rst381 .. _local-configuration-files:

12