Home
last modified time | relevance | path

Searched refs:func_name (Results 1 – 25 of 96) sorted by relevance

1234

/third_party/libwebsockets/lib/tls/mbedtls/wrapper/include/internal/
Dssl_methods.h27 #define IMPLEMENT_TLS_METHOD_FUNC(func_name, \ argument
35 static const SSL_METHOD_FUNC func_name LOCAL_ATRR = { \
51 #define IMPLEMENT_TLS_METHOD(ver, mode, fun, func_name) \ argument
52 const SSL_METHOD* func_name(void) { \
53 static const SSL_METHOD func_name##_data LOCAL_ATRR = { \
58 return &func_name##_data; \
61 #define IMPLEMENT_SSL_METHOD(ver, mode, fun, func_name) \ argument
62 const SSL_METHOD* func_name(void) { \
63 static const SSL_METHOD func_name##_data LOCAL_ATRR = { \
68 return &func_name##_data; \
[all …]
/third_party/boost/boost/contract/
Doverride.hpp41 #define BOOST_CONTRACT_NAMED_OVERRIDE(type_name, func_name) argument
52 func_name) \ argument
74 BOOST_CONTRACT_DETAIL_NAME1(B)::func_name( \
83 #define BOOST_CONTRACT_OVERRIDE_CALL_BASE_DECL_(func_name) \ argument
84 BOOST_CONTRACT_OVERRIDE_CALL_BASE_(1, ~, ~, func_name)
90 #define BOOST_CONTRACT_OVERRIDE_CALL_BASE_DECL_(func_name) \ argument
92 BOOST_CONTRACT_OVERRIDE_CALL_BASE_ARITY_, func_name) \
94 #define BOOST_CONTRACT_OVERRIDE_CALL_BASE_ARITY_(z, arity, func_name) \ argument
96 BOOST_PP_SUB(BOOST_CONTRACT_MAX_ARGS, arity), func_name)
101 #define BOOST_CONTRACT_NAMED_OVERRIDE(type_name, func_name) \ argument
[all …]
/third_party/libsnd/tests/
Dwin32_ordinal_test.c57 test_ordinal (HMODULE hmod, const char * func_name, int ordinal) in test_ordinal() argument
61 print_test_name ("win32_ordinal_test", func_name) ; in test_ordinal()
70 if ((name = GetProcAddress (hmod, func_name)) == NULL) in test_ordinal()
88 static char func_name [1024] ; in win32_ordinal_test() local
116 { func_name [0] = 0 ; in win32_ordinal_test()
119 if (sscanf (buffer, "%s @%d", func_name, &ordinal) != 2) in win32_ordinal_test()
122 errors += test_ordinal (hmod, func_name, ordinal) ; in win32_ordinal_test()
/third_party/boost/boost/contract/detail/type_traits/
Dmirror.hpp36 trait, func_name) \ argument
70 &BOOST_CONTRACT_DETAIL_NAME1(C)::func_name \
90 trait, func_name) \ argument
92 /* is_static = */ 0, trait, func_name)
95 func_name) \ argument
97 /* is_static = */ 1, trait, func_name)
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/
Dgen_load_texture_border_functions_table.py72 def get_load_func(func_name, load_function): argument
73 snippet = "LoadTextureBorderFunctionInfo " + func_name + "()\n"
103 func_name = load_functions_name(internal_format, angle_format)
106 table_data += s + ' return ' + func_name + ';\n'
108 load_functions_data += get_load_func(func_name, load_function)
Dgen_load_functions_table.py110 def get_load_func(func_name, type_functions): argument
111 snippet = "LoadImageFunctionInfo " + func_name + "(GLenum type)\n"
159 func_name = load_functions_name(internal_format, angle_format)
163 table_data += s + ' return ' + func_name + ';\n'
171 load_functions_data += get_load_func(func_name, type_functions)
/third_party/jerryscript/jerry-core/vm/
Dvm-utils.c121 ecma_string_t* func_name = vm_get_function_name_string (context_p); in vm_get_backtrace() local
122 func_name = ecma_concat_ecma_strings (func_name, str_p); in vm_get_backtrace()
124 ecma_fast_array_set_property (array_p, index, ecma_make_string_value (func_name)); in vm_get_backtrace()
126 ecma_deref_ecma_string(func_name); in vm_get_backtrace()
/third_party/boost/boost/test/
Dminimal.hpp86 report_error( const char* msg, const char* file, int line, const_string func_name, bool is_msg = fa… in report_error() argument
96 if( func_name != "(unknown)" ) in report_error()
97 std::cerr << " in function: '" << func_name << "'"; in report_error()
103 report_critical_error( const char* msg, const char* file, int line, const_string func_name, bool is… in report_critical_error() argument
105 report_error( msg, file, line, func_name, is_msg ); in report_critical_error()
/third_party/flutter/skia/third_party/externals/angle2/src/libANGLE/renderer/
Dgen_load_functions_table.py111 def get_load_func(func_name, type_functions): argument
112 snippet = "LoadImageFunctionInfo " + func_name + "(GLenum type)\n"
160 func_name = load_functions_name(internal_format, angle_format)
164 table_data += s + ' return ' + func_name + ';\n'
171 load_functions_data += get_load_func(func_name, type_functions)
/third_party/NuttX/drivers/usbdev/gadget/fconfig/src/
Dusbd_config.c523 static int fconfig_do_make_function(struct gadget_config *cfg, char *func_name) in fconfig_do_make_function() argument
531 instance_name = strchr(func_name, '.'); in fconfig_do_make_function()
534 usb_err("%s: unable to locate . in %s\n", __FUNCTION__, func_name); in fconfig_do_make_function()
549 dev_info = fconfig_find_usbdev_info(func_name); in fconfig_do_make_function()
584 static int fconfig_do_drop_function(struct gadget_config *cfg, char *func_name) in fconfig_do_drop_function() argument
590 instance_name = strchr(func_name, '.'); in fconfig_do_drop_function()
593 usb_err("unable to locate . in %s\n", func_name); in fconfig_do_drop_function()
618 char *func_name = NULL; in fconfig_get_function_info() local
651 func_name = fconfig_get_string(obj, &func_info.func_name); in fconfig_get_function_info()
652 if (func_name == NULL) in fconfig_get_function_info()
[all …]
/third_party/python/Lib/
Dpyclbr.py83 def _nest_function(ob, func_name, lineno): argument
85 newfunc = Function(ob.module, func_name, ob.file, lineno, ob)
86 ob._addchild(func_name, newfunc)
88 ob._addmethod(func_name, lineno)
211 tokentype, func_name, start = next(g)[0:3]
217 cur_func = _nest_function(cur_obj, func_name, lineno)
220 cur_func = Function(fullmodule, func_name, fname, lineno)
221 tree[func_name] = cur_func
/third_party/libsnd/
Dmake_lite.py29 def find_function_definition (source, func_name): argument
30 func_re = "(\n[a-zA-Z_ \t]+\n%s[^a-zA-Z0-9_].* /\* %s \*/\n)" % (func_name, func_name)
88 def remove_function (source, func_name): argument
89 func_text = find_function_definition (source, func_name)
91 print "remove_function : function '%s' not found. Exiting." % func_name
94 source = string.replace (source, func_text, "/* Function %s() removed here. */\n" % func_name)
/third_party/skia/third_party/externals/tint/src/inspector/
Dtest_inspector_builder.cc162 std::string func_name, in MakeStructVariableReferenceBodyFunction() argument
187 Func(func_name, ast::VariableList(), ty.void_(), stmts, in MakeStructVariableReferenceBodyFunction()
228 const std::string& func_name, in MakeSamplerReferenceBodyFunction() argument
243 return Func(func_name, ast::VariableList(), ty.void_(), stmts, decorations); in MakeSamplerReferenceBodyFunction()
247 const std::string& func_name, in MakeSamplerReferenceBodyFunction() argument
265 return Func(func_name, ast::VariableList(), ty.void_(), stmts, decorations); in MakeSamplerReferenceBodyFunction()
270 const std::string& func_name, in MakeComparisonSamplerReferenceBodyFunction() argument
287 return Func(func_name, ast::VariableList(), ty.void_(), stmts, decorations); in MakeComparisonSamplerReferenceBodyFunction()
340 const std::string& func_name, in MakeStorageTextureBodyFunction() argument
350 return Func(func_name, ast::VariableList(), ty.void_(), stmts, decorations); in MakeStorageTextureBodyFunction()
Dtest_inspector_builder.h234 std::string func_name,
276 const std::string& func_name,
293 const std::string& func_name,
312 const std::string& func_name,
357 const std::string& func_name,
/third_party/ltp/testcases/misc/math/float/iperb/
Dgeniperb.c51 int create_file(char *func_name, int NbVal) in create_file() argument
59 char *arglist[] = { func_name, NULL }; in create_file()
/third_party/python/Objects/
Dfuncobject.c46 op->func_name = ((PyCodeObject *)code)->co_name; in PyFunction_NewWithQualName()
47 Py_INCREF(op->func_name); in PyFunction_NewWithQualName()
71 op->func_qualname = op->func_name; in PyFunction_NewWithQualName()
286 op->func_name, in func_set_code()
298 Py_INCREF(op->func_name); in func_get_name()
299 return op->func_name; in func_get_name()
313 Py_XSETREF(op->func_name, value); in func_set_name()
558 Py_SETREF(newfunc->func_name, name); in func_new_impl()
578 Py_CLEAR(op->func_name); in func_clear()
616 Py_VISIT(f->func_name); in func_traverse()
/third_party/ffmpeg/libavformat/
Dtls_mbedtls.c69 static int handle_transport_error(URLContext *h, const char* func_name, int react_on_eagain, int re… in handle_transport_error() argument
80 av_log(h, AV_LOG_ERROR, "%s returned 0x%x\n", func_name, ret); in handle_transport_error()
278 static int handle_tls_error(URLContext *h, const char* func_name, int ret) in handle_tls_error() argument
289 av_log(h, AV_LOG_WARNING, "%s reported connection reset by peer\n", func_name); in handle_tls_error()
292 av_log(h, AV_LOG_ERROR, "%s returned -0x%x\n", func_name, -ret); in handle_tls_error()
/third_party/ltp/testcases/misc/math/float/bessel/
Dgenbessel.c51 int create_file(char *func_name, int NbVal) in create_file() argument
59 char *arglist[] = { func_name, NULL }; in create_file()
/third_party/boost/libs/dll/example/tutorial8/
Drefcounting_api.hpp55 boost::dll::fs::path path, const char* func_name) in get_plugin() argument
60 func_name, in get_plugin()
/third_party/skia/third_party/externals/abseil-cpp/absl/debugging/
Dsymbolize_emscripten.inc53 const char* func_name = emscripten_pc_get_function(pc);
54 if (func_name == nullptr) {
58 strncpy(out, func_name, out_size);
/third_party/ltp/testcases/misc/math/float/power/
Dgenpower.c51 int create_file(char *func_name, int NbVal) in create_file() argument
58 char *arglist[] = { func_name, NULL }; in create_file()
/third_party/ltp/testcases/misc/math/float/trigo/
Dgentrigo.c52 int create_file(char *func_name, int NbVal) in create_file() argument
59 char *arglist[] = { func_name, NULL }; in create_file()
/third_party/ltp/testcases/misc/math/float/exp_log/
Dgenexp_log.c51 int create_file(char *func_name, int NbVal) in create_file() argument
58 char *arglist[] = { func_name, NULL }; in create_file()
/third_party/boost/libs/function_types/example/
Dinterpreter.hpp176 std::string func_name = parser.get<std::string>(); in parse_input() local
179 dictionary::const_iterator entry = map_invokers.find( func_name ); in parse_input()
181 throw std::runtime_error("unknown function: " + func_name); in parse_input()
/third_party/gstreamer/gstplugins_base/gst/gio/
Dgstgio.c48 gst_gio_error (gpointer element, const gchar * func_name, GError ** err, in gst_gio_error() argument
57 GST_DEBUG_OBJECT (element, "blocking I/O call cancelled (%s)", func_name); in gst_gio_error()
64 ("%s call failed without error set", func_name)); in gst_gio_error()

1234