Home
last modified time | relevance | path

Searched refs:to_return (Results 1 – 9 of 9) sorted by relevance

/third_party/openssl/crypto/engine/
Deng_init.c19 int to_return = 1; in engine_unlocked_init() local
26 to_return = e->init(e); in engine_unlocked_init()
27 if (to_return) { in engine_unlocked_init()
37 return to_return; in engine_unlocked_init()
46 int to_return = 1; in engine_unlocked_finish() local
61 to_return = e->finish(e); in engine_unlocked_finish()
64 if (!to_return) in engine_unlocked_finish()
73 return to_return; in engine_unlocked_finish()
97 int to_return = 1; in ENGINE_finish() local
102 to_return = engine_unlocked_finish(e, 1); in ENGINE_finish()
[all …]
Deng_list.c297 int to_return = 1; in ENGINE_add() local
309 to_return = 0; in ENGINE_add()
312 return to_return; in ENGINE_add()
318 int to_return = 1; in ENGINE_remove() local
326 to_return = 0; in ENGINE_remove()
329 return to_return; in ENGINE_remove()
/third_party/python/Lib/test/
Dtest_multiprocessing_main_handling.py113 to_return = make_script(script_dir, script_basename,
119 return to_return
123 to_return = make_zip_pkg(zip_dir, zip_basename, pkg_name, script_basename,
126 return to_return
144 to_return = make_script(script_dir, script_basename, source)
146 return to_return
Dtest_cmd_line_script.py81 to_return = make_script(script_dir, script_basename, source)
83 return to_return
87 to_return = make_zip_pkg(zip_dir, zip_basename, pkg_name, script_basename,
90 return to_return
/third_party/openssl/test/
Denginetest.c51 int to_return = 0; in test_engines() local
172 to_return = 1; in test_engines()
181 return to_return; in test_engines()
254 int to_return = 0; in test_redirect() local
342 to_return = 1; in test_redirect()
349 return to_return; in test_redirect()
/third_party/python/Lib/test/test_importlib/import_/
Dtest_path.py122 return self.to_return
124 failing_finder.to_return = None
132 success_finder.to_return = __loader__
/third_party/boost/boost/intrusive/
Dhashtable.hpp3439 std::pair<siterator, siterator> to_return in priv_local_equal_range() local
3443 if(to_return.first != to_return.second){ in priv_local_equal_range()
3448 siterator it = to_return.first; in priv_local_equal_range()
3451 to_return.second = ++(priv_last_in_group)(it); in priv_local_equal_range()
3452 internal_cnt += boost::intrusive::iterator_distance(++it, to_return.second); in priv_local_equal_range()
3460 to_return.second = it; in priv_local_equal_range()
3464 return to_return; in priv_local_equal_range()
3477 std::pair<siterator, siterator> to_return in priv_equal_range() local
3482 if(to_return.first != to_return.second && in priv_equal_range()
3483 to_return.second == bp[n_bucket].end()){ in priv_equal_range()
[all …]
/third_party/python/Python/
Dimport.c1663 PyObject *to_return = PyUnicode_Substring(abs_name, 0, in PyImport_ImportModuleLevelObject() local
1665 if (to_return == NULL) { in PyImport_ImportModuleLevelObject()
1669 final_mod = import_get_module(tstate, to_return); in PyImport_ImportModuleLevelObject()
1670 Py_DECREF(to_return); in PyImport_ImportModuleLevelObject()
1675 to_return); in PyImport_ImportModuleLevelObject()
/third_party/python/Lib/test/test_importlib/
Dutil.py316 to_return = fxn(*args, **kwargs)
319 return to_return