Searched refs:info (Results 26 - 50 of 1698) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/mdocml/
H A Dmandoc_ohash.c33 struct ohash_info info; local
35 info.alloc = hash_alloc;
36 info.calloc = hash_calloc;
37 info.free = hash_free;
38 info.data = NULL;
39 info.key_offset = ko;
41 ohash_init(h, sz, &info);
/freebsd-11-stable/contrib/binutils/opcodes/
H A Dsparc-dis.c451 print_insn_sparc (bfd_vma memaddr, disassemble_info *info) argument
453 FILE *stream = info->stream;
464 || info->mach != current_mach)
468 current_arch_mask = compute_arch_mask (info->mach);
480 current_mach = info->mach;
486 (*info->read_memory_func) (memaddr, buffer, sizeof (buffer), info);
490 (*info->memory_error_func) (status, memaddr, info);
497 if (info
[all...]
H A Ds390-dis.c35 init_disasm (struct disassemble_info *info) argument
49 switch (info->mach)
107 print_insn_s390 (bfd_vma memaddr, struct disassemble_info *info) argument
117 init_disasm (info);
120 info->bytes_per_line = 6;
124 status = (*info->read_memory_func) (memaddr, buffer, 6, info);
128 if ((*info->read_memory_func) (memaddr, buffer, bufsize + 1, info) != 0)
132 (*info
[all...]
/freebsd-11-stable/sys/dev/vt/hw/efifb/
H A Defifb.c99 struct fb_info *info; local
103 info = vd->vd_softc;
104 if (info == NULL)
105 info = vd->vd_softc = (void *)&local_info;
115 info->fb_height = efifb->fb_height;
116 info->fb_width = efifb->fb_width;
118 info->fb_depth = fls(efifb->fb_mask_red | efifb->fb_mask_green |
121 info->fb_bpp = roundup2(info->fb_depth, NBBY);
124 info
[all...]
/freebsd-11-stable/contrib/binutils/bfd/
H A Dsyms.c522 binary back-end and anywhere else where no private info
731 Fill in the basic info about symbol that nm needs.
732 Additional info may be added by the back-ends after
917 struct stab_find_info *info; local
953 info = *pinfo;
954 if (info != NULL)
956 if (info->stabsec == NULL || info->strsec == NULL)
962 stabsize = (info->stabsec->rawsize
963 ? info
[all...]
/freebsd-11-stable/tests/sys/file/
H A Dclosefrom_test.c85 cok(struct shared_info *info, const char *descr) argument
88 info->failed = 0;
89 strlcpy(info->tag, descr, sizeof(info->tag));
94 cfail(struct shared_info *info, const char *descr, const char *fmt, ...) argument
98 info->failed = 1;
99 strlcpy(info->tag, descr, sizeof(info->tag));
102 vsprintf(info->message, fmt, ap);
108 #define cfail_err(info, desc
145 struct shared_info *info; local
[all...]
/freebsd-11-stable/lib/libc/db/test/hash.tests/
H A Ddriver2.c69 HASHINFO info; local
71 info.bsize = 1024;
72 info.ffactor = 5;
73 info.nelem = 1;
74 info.cachesize = NULL;
76 info.hash_id = HASH_ID_PROGRAM_SPECIFIED;
77 info.hash_func = my_hash;
79 info.hash = my_hash;
81 info.lorder = 0;
82 if (!(db = dbopen("bigtest", O_RDWR | O_CREAT, 0644, DB_HASH, &info))) {
[all...]
/freebsd-11-stable/usr.bin/truss/
H A Dsetup.c76 setup_and_wait(struct trussinfo *info, char *command[]) argument
93 new_proc(info, pid, 0);
100 start_tracing(struct trussinfo *info, pid_t pid) argument
115 new_proc(info, pid, 0);
208 add_threads(struct trussinfo *info, struct procinfo *p) argument
228 info->curthread = t;
229 enter_syscall(info, t, &pl);
236 new_proc(struct trussinfo *info, pid_t pid, lwpid_t lwpid) argument
244 LIST_FOREACH(np, &info->proclist, entries) {
249 if (info
279 detach_all_procs(struct trussinfo *info) argument
290 find_proc(struct trussinfo *info, pid_t pid) argument
306 find_thread(struct trussinfo *info, pid_t pid, lwpid_t lwpid) argument
328 find_exit_thread(struct trussinfo *info, pid_t pid) argument
368 enter_syscall(struct trussinfo *info, struct threadinfo *t, struct ptrace_lwpinfo *pl) argument
426 thread_exit_syscall(struct trussinfo *info) argument
441 exit_syscall(struct trussinfo *info, struct ptrace_lwpinfo *pl) argument
504 print_line_prefix(struct trussinfo *info) argument
536 report_thread_death(struct trussinfo *info) argument
547 report_thread_birth(struct trussinfo *info) argument
559 report_exit(struct trussinfo *info, siginfo_t *si) argument
576 report_new_child(struct trussinfo *info) argument
642 report_signal(struct trussinfo *info, siginfo_t *si, struct ptrace_lwpinfo *pl) argument
665 eventloop(struct trussinfo *info) argument
[all...]
/freebsd-11-stable/contrib/subversion/subversion/libsvn_subr/
H A Dcache.c209 svn_cache__info_t *info,
215 memset(info, 0, sizeof(*info));
216 info->gets = cache->reads;
217 info->hits = cache->hits;
218 info->sets = cache->writes;
219 info->failures = cache->failures;
226 info,
244 svn_cache__format_info(const svn_cache__info_t *info, argument
250 apr_uint64_t misses = info
208 svn_cache__get_info(svn_cache__t *cache, svn_cache__info_t *info, svn_boolean_t reset, apr_pool_t *result_pool) argument
[all...]
/freebsd-11-stable/lib/librpcsec_gss/
H A Drpcsec_gss_conf.c183 struct mech_info *info; local
209 info = malloc(sizeof(struct mech_info));
210 if (!info)
212 if (_rpc_gss_string_to_oid(oid, &info->oid)) {
213 free(info);
216 info->name = strdup(name);
217 info->qops = NULL;
218 info->lib = strdup(lib);
219 info->kobj = strdup(kobj);
220 SLIST_INSERT_HEAD(&mechs, info, lin
241 struct qop_info *info; local
298 struct mech_info *info; local
314 struct mech_info *info; local
332 struct qop_info *info; local
349 struct qop_info *info; local
374 struct mech_info *info; local
409 struct mech_info *info; local
[all...]
/freebsd-11-stable/contrib/apr-util/test/
H A Dtesturi.c225 static void show_info(apr_status_t rv, apr_status_t expected, const apr_uri_t *info)
246 info->scheme, info->hostinfo, info->user, info->password,
247 info->hostname, info->port_str, info->path, info->query,
248 info
258 apr_uri_t info; local
306 apr_uri_t info; local
[all...]
/freebsd-11-stable/etc/
H A Dsyslog.conf9 *.notice;authpriv.none;kern.debug;lpr.info;mail.crit;news.err /var/log/messages
11 auth.info;authpriv.info /var/log/auth.log
12 mail.info /var/log/maillog
13 lpr.info /var/log/lpd-errs
14 ftp.info /var/log/xferlog
21 #console.info /var/log/console.log
/freebsd-11-stable/contrib/libxo/tests/core/
H A Dtest_04.c17 xo_info_t info[] = { variable
23 int info_count = (sizeof(info) / sizeof(info[0]));
43 xo_set_info(NULL, info, info_count);
H A Dtest_06.c17 xo_info_t info[] = { variable
23 int info_count = (sizeof(info) / sizeof(info[0]));
43 xo_set_info(NULL, info, info_count);
/freebsd-11-stable/contrib/gdb/gdb/
H A Darch-utils.c413 struct gdbarch_info info;
415 gdbarch_info_init (&info);
416 info.byte_order = BFD_ENDIAN_LITTLE;
417 if (! gdbarch_update_p (info))
422 struct gdbarch_info info;
424 gdbarch_info_init (&info);
425 info.byte_order = BFD_ENDIAN_BIG;
426 if (! gdbarch_update_p (info))
479 struct gdbarch_info info;
480 gdbarch_info_init (&info);
411 struct gdbarch_info info; local
420 struct gdbarch_info info; local
477 struct gdbarch_info info; local
495 gdbarch_update_p(struct gdbarch_info info) argument
539 struct gdbarch_info info; local
584 struct gdbarch_info info; local
682 gdbarch_info_init(struct gdbarch_info *info) argument
694 gdbarch_info_fill(struct gdbarch *gdbarch, struct gdbarch_info *info) argument
[all...]
/freebsd-11-stable/contrib/gcc/
H A Dunwind-c.c51 lsda_header_info *info)
56 info->Start = (context ? _Unwind_GetRegionStart (context) : 0);
61 p = read_encoded_value (context, lpstart_encoding, p, &info->LPStart);
63 info->LPStart = info->Start;
66 info->ttype_encoding = *p++;
67 if (info->ttype_encoding != DW_EH_PE_omit)
70 info->TType = p + tmp;
73 info->TType = 0;
77 info
50 parse_lsda_header(struct _Unwind_Context *context, const unsigned char *p, lsda_header_info *info) argument
127 lsda_header_info info; local
[all...]
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_symbolizer_mac.cpp31 Dl_info info; local
32 int result = dladdr((const void *)addr, &info);
35 CHECK(addr >= reinterpret_cast<uptr>(info.dli_saddr));
36 stack->info.function_offset = addr - reinterpret_cast<uptr>(info.dli_saddr);
37 const char *demangled = DemangleSwiftAndCXX(info.dli_sname);
39 stack->info.function = internal_strdup(demangled);
44 Dl_info info; local
45 int result = dladdr((const void *)addr, &info);
47 const char *demangled = DemangleSwiftAndCXX(info
162 Dl_info info; local
177 SymbolizeData(uptr addr, DataInfo *info) argument
[all...]
H A Dsanitizer_stacktrace_printer.cpp110 const AddressInfo &info, bool vs_style,
129 buffer->append("0x%zx", info.address);
132 buffer->append("%s", StripPathPrefix(info.module, strip_path_prefix));
135 buffer->append("0x%zx", info.module_offset);
140 StripFunctionName(info.function, strip_func_prefix)));
143 buffer->append("0x%zx", info.function_offset != AddressInfo::kUnknown
144 ? info.function_offset
148 buffer->append("%s", StripPathPrefix(info.file, strip_path_prefix));
151 buffer->append("%d", info.line);
154 buffer->append("%d", info
109 RenderFrame(InternalScopedString *buffer, const char *format, int frame_no, const AddressInfo &info, bool vs_style, const char *strip_path_prefix, const char *strip_func_prefix) argument
[all...]
/freebsd-11-stable/contrib/subversion/subversion/svn/
H A Dinfo-cmd.c2 * info-cmd.c -- Display information about a resource
336 relative_url(const svn_client_info2_t *info, apr_pool_t *pool)
340 svn_uri_skip_ancestor(info->repos_root_URL,
341 info->URL, pool),
406 /* The baton type used by the info receiver functions. */
419 /* Do we expect to show info for multiple targets? */
511 Prints svn info in xml mode to standard out */ argument
515 const svn_client_info2_t *info,
524 const char *const kind_str = svn_cl__node_kind_str_xml(info->kind);
526 (SVN_IS_VALID_REVNUM(info
334 relative_url(const svn_client_info2_t *info, apr_pool_t *pool) argument
711 print_info(void *baton, const char *target, const svn_client_info2_t *info, apr_pool_t *pool) argument
1116 print_info_item(void *baton, const char *target, const svn_client_info2_t *info, apr_pool_t *pool) argument
[all...]
/freebsd-11-stable/sys/dev/sound/pcm/
H A Dfeeder_eq.c144 feed_eq_biquad_##SIGN##BIT##ENDIAN(struct feed_eq_info *info, \
153 pmul = feed_eq_preamp[info->preamp].mul; \
154 pshift = feed_eq_preamp[info->preamp].shift; \
156 if (info->state == FEEDEQ_DISABLE) { \
157 j = count * info->channels; \
169 treble = &(info->coeff[info->treble.gain].treble); \
170 bass = &(info->coeff[info->bass.gain].bass); \
174 j = info
308 feed_eq_reset(struct feed_eq_info *info) argument
325 feed_eq_setup(struct feed_eq_info *info) argument
340 struct feed_eq_info *info; local
380 struct feed_eq_info *info; local
432 struct feed_eq_info *info; local
447 struct feed_eq_info *info; local
[all...]
/freebsd-11-stable/bin/stty/
H A Dkey.c51 void f_all(struct info *);
52 void f_cbreak(struct info *);
53 void f_columns(struct info *);
54 void f_dec(struct info *);
55 void f_ek(struct info *);
56 void f_everything(struct info *);
57 void f_extproc(struct info *);
58 void f_ispeed(struct info *);
59 void f_nl(struct info *);
60 void f_ospeed(struct info *);
[all...]
/freebsd-11-stable/lib/libc/sys/
H A Dsigtimedwait.c44 sigtimedwait(const sigset_t * __restrict set, siginfo_t * __restrict info, argument
50 __libc_interposing[INTERPOS_sigtimedwait])(set, info, t));
H A Dsigwaitinfo.c44 sigwaitinfo(const sigset_t * __restrict set, siginfo_t * __restrict info) argument
48 __libc_interposing[INTERPOS_sigwaitinfo])(set, info));
/freebsd-11-stable/usr.sbin/ppp/
H A Dtun.c107 struct tuninfo info;
109 memset(&info, '\0', sizeof info);
110 info.type = IFT_PPP;
111 info.mtu = bundle->iface->mtu;
113 info.baudrate = bundle->bandwidth;
115 info.flags = IFF_UP|IFF_POINTOPOINT|IFF_MULTICAST;
117 if (ID0ioctl(bundle->dev.fd, TUNSIFINFO, &info) < 0)
/freebsd-11-stable/contrib/expat/xmlwf/
H A Dcodepage.c45 CPINFO info; local
46 if (! GetCPInfo(cp, &info) || info.MaxCharSize > 2)
50 if (info.MaxCharSize > 1) {
53 if (info.LeadByte[i] == 0 && info.LeadByte[i + 1] == 0)
55 lim = info.LeadByte[i + 1];
56 for (j = info.LeadByte[i]; j <= lim; j++)

Completed in 387 milliseconds

1234567891011>>