Home
last modified time | relevance | path

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

12

/third_party/mbedtls/scripts/mbedtls_dev/
Dc_build_helper.py44 c_fd, c_name = tempfile.mkstemp(prefix='tmp-{}-'.format(file_label),
47 exe_name = c_name[:-2] + exe_suffix
50 return c_file, c_name, exe_name
119 c_name = None
123 c_file, c_name, exe_name = create_c_file(file_label)
148 subprocess.check_call(cmd + [c_name])
151 .format(caller, c_name))
153 os.remove(c_name)
/third_party/glib/gio/
Dglib-compile-resources.c732 char *c_name = NULL; in main() local
749 …{ "c-name", 0, 0, G_OPTION_ARG_STRING, &c_name, N_("C identifier name used for the generated sourc… in main()
798 g_free (c_name); in main()
867 g_free (c_name); in main()
970 g_free (c_name); in main()
977 if (c_name == NULL) in main()
1003 c_name = g_string_free (s, FALSE); in main()
1009 c_name_no_underscores = c_name; in main()
1018 g_free (c_name); in main()
1031 g_free (c_name); in main()
[all …]
/third_party/python/Lib/test/
Dtest__osx_support.py145 for c_name, c_output in compilers:
146 os_helper.unlink(c_name)
147 self.addCleanup(os_helper.unlink, c_name)
148 with open(c_name, 'w') as f:
150 os.chmod(c_name, stat.S_IRWXU)
223 c_name = 'clang'
224 os_helper.unlink(c_name)
225 self.addCleanup(os_helper.unlink, c_name)
227 with open(c_name, 'w') as f:
229 os.chmod(c_name, stat.S_IRWXU)
/third_party/boost/libs/regex/test/regress/
Dtest_locale.cpp29 test_locale::test_locale(const char* c_name, boost::uint32_t lcid) in test_locale() argument
34 m_name = c_name; in test_locale()
39 if(std::setlocale(LC_ALL, c_name)) in test_locale()
42 std::cout << "Testing the global C locale: " << c_name << std::endl; in test_locale()
47 …std::cout << "The global C locale: " << c_name << " is not available and will not be tested." << s… in test_locale()
59 s_cpp_locale_inst = std::locale(c_name); in test_locale()
61 std::cout << "Testing the C++ locale: " << c_name << std::endl; in test_locale()
66 …std::cout << "The C++ locale: " << c_name << " is not available and will not be tested." << std::e… in test_locale()
Dtest_locale.hpp34 test_locale(const char* c_name, boost::uint32_t lcid);
/third_party/ltp/testcases/kernel/syscalls/getcwd/
Dgetcwd04.c86 char c_name[PATH_MAX] = "testfile", n_name[PATH_MAX]; in do_child() local
88 SAFE_TOUCH(c_name, 0644, NULL); in do_child()
92 SAFE_RENAME(c_name, n_name); in do_child()
93 strncpy(c_name, n_name, PATH_MAX); in do_child()
/third_party/iptables/extensions/
Dlibebt_log.c31 char *c_name; member
51 if (!strcmp(arg, eight_priority[i].c_name)) in name_to_loglevel()
83 eight_priority[i].c_name); in brlog_help()
165 eight_priority[loginfo->loglevel].c_name, in brlog_print()
191 xt_xlate_add(xl, " level %s", eight_priority[loginfo->loglevel].c_name); in brlog_xlate()
/third_party/quickjs/
Dqjsc.c176 FILE *fo, JSValueConst obj, const char *c_name, in output_object_code() argument
191 namelist_add(&cname_list, c_name, NULL, load_only); in output_object_code()
194 c_name, (unsigned int)out_buf_len); in output_object_code()
196 c_name, (unsigned int)out_buf_len); in output_object_code()
289 char c_name[1024]; in compile_file() local
315 pstrcpy(c_name, sizeof(c_name), c_name1); in compile_file()
317 get_c_name(c_name, sizeof(c_name), filename); in compile_file()
319 output_object_code(ctx, fo, obj, c_name, FALSE); in compile_file()
/third_party/libnl/lib/genl/
Dctrl.c497 .c_name = "NEWFAMILY" ,
504 .c_name = "DELFAMILY" ,
508 .c_name = "GETFAMILY" ,
512 .c_name = "NEWOPS" ,
516 .c_name = "DELOPS" ,
Dmngt.c136 strncpy(buf, cmd->c_name, len - 1); in genl_op2name()
/third_party/toybox/toys/pending/
Dsyslogd.c78 for (; w->c_name; w++)
79 if (!strcasecmp(key, w->c_name)) return w->c_val;
87 for (; clist->c_name; clist++) in dec()
88 if (val == clist->c_val) return clist->c_name; in dec()
/third_party/libnl/include/netlink/genl/
Dmngt.h93 char * c_name; member
/third_party/musl/include/
Dsyslog.h73 char *c_name; member
/third_party/musl/porting/liteos_m_iccarm/kernel/include/
Dsyslog.h73 char *c_name; member
/third_party/musl/ndk_musl_include/
Dsyslog.h73 char *c_name; member
/third_party/musl/porting/uniproton/kernel/include/
Dsyslog.h73 char *c_name; member
/third_party/musl/porting/liteos_m/kernel/include/
Dsyslog.h73 char *c_name; member
/third_party/libnl/src/
Dnl-list-caches.c102 cmd->c_name, cmd->c_id, cmd->c_maxattr, in print()
/third_party/ffmpeg/libavfilter/
Dvf_fade.c200 #define INTERP(c_name, c_idx) av_clip_uint8(((c[c_idx]<<16) + ((int)p[c_name] - (int)c[c_idx]) * s-… in filter_rgb() argument
224 #define INTERPP(c_name, c_idx) av_clip_uint8(((c[c_idx]<<16) + ((int)c_name - (int)c[c_idx]) * s->f… in filter_rgb_planar() argument
/third_party/libnl/tests/
Dtest-genl.c58 .c_name = "taskstats_new()",
/third_party/toybox/lib/
Dportability.h304 typedef struct {char *c_name; int c_val;} CODE; member
/third_party/mesa3d/src/mapi/
Dmapi_abi.py114 c_name = m.group('name')
118 return (c_type, c_name, c_array)
/third_party/mesa3d/src/panfrost/bifrost/
Dgen_disasm.py348 return disasm_op_template.render(c_name = opname_to_c(name), body = body)
/third_party/ffmpeg/libavformat/
Drtsp.c294 const char *c_name; in sdp_parse_rtpmap() local
321 c_name = desc->name; in sdp_parse_rtpmap()
323 c_name = "(null)"; in sdp_parse_rtpmap()
329 av_log(s, AV_LOG_DEBUG, "audio codec set to: %s\n", c_name); in sdp_parse_rtpmap()
346 av_log(s, AV_LOG_DEBUG, "video codec set to: %s\n", c_name); in sdp_parse_rtpmap()
/third_party/libsoup/libsoup/
Dmeson.build5 c_name: 'soup',

12