Searched refs:opt (Results 1 – 7 of 7) sorted by relevance
| /third_party/ulib/musl/src/misc/ |
| A D | getsubopt.c | 4 int getsubopt(char** opt, char* const* keys, char** val) { in getsubopt() argument 5 char* s = *opt; in getsubopt() 9 *opt = strchr(s, ','); in getsubopt() 10 if (*opt) in getsubopt() 11 *(*opt)++ = 0; in getsubopt() 13 *opt = s + strlen(s); in getsubopt()
|
| A D | getopt_long.c | 62 char* opt; in __getopt_long_core() local 65 opt = argv[optind] + 1; in __getopt_long_core() 66 if (*opt == '-') in __getopt_long_core() 67 opt++; in __getopt_long_core() 68 for (; *name && *name == *opt; name++, opt++) in __getopt_long_core() 70 if (*opt && *opt != '=') in __getopt_long_core() 83 if (*opt == '=') { in __getopt_long_core() 91 optarg = opt + 1; in __getopt_long_core()
|
| A D | syslog.c | 49 void openlog(const char* ident, int opt, int facility) { in openlog() argument 59 log_opt = opt; in openlog() 62 if ((opt & LOG_NDELAY) && log_fd < 0) in openlog()
|
| /third_party/ulib/jemalloc/ |
| A D | ChangeLog | 157 + opt.purge 158 + opt.decay_time 192 - Make opt.narenas unsigned rather than size_t. (@jasone) 340 "opt.prof_thread_active_init", "prof.thread_active_init", and 705 - Add the "opt.prof_final" mallctl. 719 - Change the "opt.prof_accum" default from true to false. 731 - Remove the "opt.lg_prof_tcmax" option. 732 - Remove the "opt.lg_prof_bt_max" option. 733 - Remove the "opt.lg_tcache_gc_sweep" option. 762 - Add missing "opt.lg_tcache_max" mallctl implementation. [all …]
|
| A D | INSTALL | 123 Disable statistics gathering functionality. See the "opt.stats_print" 133 Enable heap profiling and leak detection functionality. See the "opt.prof" 159 the "opt.tcache" option for usage details. 169 Disable support for junk/zero filling of memory. See the "opt.junk" and 170 "opt.zero" option documentation for usage details. 183 See the "opt.xmalloc" option documentation for usage details.
|
| /third_party/ulib/jemalloc/test/unit/ |
| A D | mallctl.c | 156 #define TEST_MALLCTL_OPT(t, opt, config) do { \ in TEST_BEGIN() argument 160 int result = mallctl("opt."#opt, (void *)&oldval, &sz, NULL, \ in TEST_BEGIN() 163 "Unexpected mallctl() result for opt."#opt); \ in TEST_BEGIN()
|
| /third_party/ulib/jemalloc/src/ |
| A D | ctl.c | 417 {NAME("opt"), CHILD(named, opt)},
|
Completed in 14 milliseconds