Searched refs:info (Results 51 - 75 of 1514) sorted by relevance

1234567891011>>

/freebsd-11.0-release/lib/libc/arm/aeabi/
H A Daeabi_unwind_exidx.c69 struct dl_phdr_info info; local
72 if (_rtld_addr_phdr(pc, &info)) {
73 hdr = info.dlpi_phdr;
74 for (i = 0; i < info.dlpi_phnum; i++, hdr++) {
77 return ((void *)(info.dlpi_addr + hdr->p_vaddr));
/freebsd-11.0-release/lib/libc/gen/
H A Dwaitid.c45 __waitid(idtype_t idtype, id_t id, siginfo_t *info, int flags) argument
52 &status, flags, NULL, info);
62 if (ret == 0 && info != NULL)
63 memset(info, 0, sizeof(*info));
/freebsd-11.0-release/contrib/subversion/subversion/svn/
H A Dinfo-cmd.c2 * info-cmd.c -- Display information about a resource
84 relative_url(const svn_client_info2_t *info, apr_pool_t *pool)
88 svn_uri_skip_ancestor(info->repos_root_URL,
89 info->URL, pool),
146 /* The baton type used by the info receiver functions. */
159 /* Do we expect to show info for multiple targets? */
245 Prints svn info in xml mode to standard out */ argument
249 const svn_client_info2_t *info,
256 if (SVN_IS_VALID_REVNUM(info->rev))
257 rev_str = apr_psprintf(pool, "%ld", info
82 relative_url(const svn_client_info2_t *info, apr_pool_t *pool) argument
417 print_info(void *baton, const char *target, const svn_client_info2_t *info, apr_pool_t *pool) argument
777 print_info_item(void *baton, const char *target, const svn_client_info2_t *info, apr_pool_t *pool) argument
[all...]
/freebsd-11.0-release/contrib/binutils/opcodes/
H A Dscore-dis.c71 print_insn_score32 (bfd_vma pc, struct disassemble_info *info, long given) argument
74 void *stream = info->stream;
75 fprintf_ftype func = info->fprintf_func;
93 if (info->flags & INSN_HAS_RELOC)
96 (*info->print_address_func) (target, info);
106 (*info->print_address_func) (target, info);
228 print_insn_parallel_sym (struct disassemble_info *info) argument
230 void *stream = info
242 print_insn_score16(bfd_vma pc, struct disassemble_info *info, long given) argument
393 print_insn(bfd_vma pc, struct disassemble_info *info, bfd_boolean little) argument
495 print_insn_big_score(bfd_vma pc, struct disassemble_info *info) argument
501 print_insn_little_score(bfd_vma pc, struct disassemble_info *info) argument
[all...]
/freebsd-11.0-release/sys/dev/drm2/
H A Ddrm_fb_helper.h92 int drm_fb_helper_blank(int blank, struct fb_info *info);
95 struct fb_info *info);
97 int drm_fb_helper_set_par(struct fb_info *info);
100 struct fb_info *info);
107 struct fb_info *info);
111 void drm_fb_helper_fill_var(struct fb_info *info, struct drm_fb_helper *fb_helper,
113 void drm_fb_helper_fill_fix(struct fb_info *info, uint32_t pitch,
117 int drm_fb_helper_setcmap(struct fb_cmap *cmap, struct fb_info *info);
123 int drm_fb_helper_debug_enter(struct fb_info *info);
124 int drm_fb_helper_debug_leave(struct fb_info *info);
[all...]
/freebsd-11.0-release/contrib/ntp/scripts/ntp-wait/
H A Dntp-wait.in28 my $info = ntp_read_vars(0, []);
30 if (!defined $info) {
35 if (!exists $info->{status_line}{leap}) {
40 my $leap = $info->{status_line}{leap};
41 my $sync = $info->{status_line}{sync};
/freebsd-11.0-release/usr.bin/mkuzip/
H A Dmkuz_blockcache.c61 vbuf = malloc(cbp->info.len);
68 rlen = read(fd, vbuf, cbp->info.len);
69 if (rlen < 0 || (unsigned)rlen != cbp->info.len) {
72 rval = (memcmp(cbp->data, vbuf, cbp->info.len) == 0) ? 1 : 0;
74 lseek(fd, cbp->info.offset, SEEK_SET);
105 assert((unsigned)lseek(fd, 0, SEEK_CUR) == bp->info.offset);
107 h = digest_fold(bp->info.digest);
112 if (bcep->hit.len != bp->info.len)
114 if (memcmp(bp->info.digest, bcep->hit.digest,
115 sizeof(bp->info
[all...]
/freebsd-11.0-release/sys/dev/sound/pcm/
H A Dfeeder_volume.c142 struct feed_volume_info *info; local
154 info = malloc(sizeof(*info), M_DEVBUF,
156 if (info == NULL)
159 info->bps = AFMT_BPS(f->desc->in);
160 info->channels = AFMT_CHANNEL(f->desc->in);
161 info->apply = feed_volume_info_tab[i].apply;
162 info->volume_class = SND_VOL_C_PCM;
163 info->state = FEEDVOLUME_ENABLE;
165 f->data = info;
186 struct feed_volume_info *info; local
200 struct feed_volume_info *info; local
238 struct feed_volume_info *info; local
321 struct feed_volume_info *info; local
[all...]
H A Dfeeder_matrix.c124 feed_matrix_##SIGN##BIT##ENDIAN(struct feed_matrix_info *info, \
132 for (i = 0; info->matrix[i].chn[0] != SND_CHN_T_EOF; \
134 if (info->matrix[i].chn[0] == SND_CHN_T_NULL) { \
139 } else if (info->matrix[i].chn[1] == \
142 src + info->matrix[i].chn[0]); \
151 info->matrix[i].chn[j] != SND_CHN_T_EOF; \
154 src + info->matrix[i].chn[j]); \
158 accum = (accum * info->matrix[i].mul) >> \
159 info->matrix[i].shift; \
171 src += info
229 feed_matrix_reset(struct feed_matrix_info *info) argument
246 feed_matrix_apply_generic(struct feed_matrix_info *info, uint8_t *src, uint8_t *dst, uint32_t count) argument
292 feed_matrix_setup(struct feed_matrix_info *info, struct pcmchan_matrix *m_in, struct pcmchan_matrix *m_out) argument
398 struct feed_matrix_info *info; local
455 struct feed_matrix_info *info; local
470 struct feed_matrix_info *info; local
[all...]
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/Process/POSIX/
H A DCrashReason.cpp25 GetCrashReasonForSIGSEGV(const siginfo_t& info) argument
27 assert(info.si_signo == SIGSEGV);
29 switch (info.si_code)
48 GetCrashReasonForSIGILL(const siginfo_t& info) argument
50 assert(info.si_signo == SIGILL);
52 switch (info.si_code)
77 GetCrashReasonForSIGFPE(const siginfo_t& info) argument
79 assert(info.si_signo == SIGFPE);
81 switch (info.si_code)
106 GetCrashReasonForSIGBUS(const siginfo_t& info) argument
300 GetCrashReason(const siginfo_t& info) argument
[all...]
/freebsd-11.0-release/contrib/libstdc++/libsupc++/
H A Deh_personality.cc58 lsda_header_info *info)
63 info->Start = (context ? _Unwind_GetRegionStart (context) : 0);
68 p = read_encoded_value (context, lpstart_encoding, p, &info->LPStart);
70 info->LPStart = info->Start;
73 info->ttype_encoding = *p++;
74 if (info->ttype_encoding != DW_EH_PE_omit)
77 info->TType = p + tmp;
80 info->TType = 0;
84 info
56 parse_lsda_header(_Unwind_Context *context, const unsigned char *p, lsda_header_info *info) argument
95 get_ttype_entry(lsda_header_info* info, _Unwind_Word i) argument
114 check_exception_spec(lsda_header_info* info, _throw_typet* throw_type, void* thrown_ptr, _Unwind_Sword filter_value) argument
202 get_ttype_entry(lsda_header_info *info, _Unwind_Word i) argument
244 check_exception_spec(lsda_header_info* info, _throw_typet* throw_type, void* thrown_ptr, _Unwind_Sword filter_value) argument
320 empty_exception_spec(lsda_header_info *info, _Unwind_Sword filter_value) argument
362 lsda_header_info info; local
713 lsda_header_info info; local
[all...]
/freebsd-11.0-release/contrib/gdb/gdb/
H A Di386fbsd-tdep.c69 i386fbsdaout_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch) argument
74 i386bsd_init_abi (info, gdbarch);
96 i386fbsd_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch) argument
99 i386fbsdaout_init_abi (info, gdbarch);
102 i386_elf_init_abi (info, gdbarch);
146 i386fbsd4_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch) argument
152 i386fbsd_init_abi (info, gdbarch);
H A Dalpha-mdebug-tdep.c174 struct alpha_mdebug_unwind_cache *info;
184 info = FRAME_OBSTACK_ZALLOC (struct alpha_mdebug_unwind_cache);
185 *this_prologue_cache = info;
192 info->proc_desc = proc_desc;
195 info->saved_regs = frame_obstack_zalloc (SIZEOF_FRAME_SAVED_REGS);
199 vfp += PROC_FRAME_OFFSET (info->proc_desc);
200 info->vfp = vfp;
215 info->saved_regs[returnreg] = reg_position;
222 info->saved_regs[ireg] = reg_position;
232 info
172 struct alpha_mdebug_unwind_cache *info; local
245 struct alpha_mdebug_unwind_cache *info local
260 struct alpha_mdebug_unwind_cache *info local
330 struct alpha_mdebug_unwind_cache *info local
340 struct alpha_mdebug_unwind_cache *info local
350 struct alpha_mdebug_unwind_cache *info local
380 alpha_mdebug_init_abi(struct gdbarch_info info, struct gdbarch *gdbarch) argument
[all...]
/freebsd-11.0-release/contrib/apr/file_io/unix/
H A Dfilestat.c70 static void fill_out_finfo(apr_finfo_t *finfo, struct_stat *info, argument
75 finfo->protection = apr_unix_mode2perms(info->st_mode);
76 finfo->filetype = filetype_from_mode(info->st_mode);
77 finfo->user = info->st_uid;
78 finfo->group = info->st_gid;
79 finfo->size = info->st_size;
80 finfo->device = info->st_dev;
81 finfo->nlink = info->st_nlink;
85 if (sizeof(apr_ino_t) >= sizeof(info->st_ino)
86 || (apr_ino_t)info
132 struct_stat info; local
155 struct_stat info; local
288 struct_stat info; local
[all...]
/freebsd-11.0-release/gnu/usr.bin/gdb/arch/arm/
H A Darmfbsd-tdep.c35 arm_freebsd_init_abi_common (struct gdbarch_info info, argument
47 arm_freebsd_elf_init_abi (struct gdbarch_info info, argument
52 arm_freebsd_init_abi_common (info, gdbarch);
/freebsd-11.0-release/sys/dev/fb/
H A Dfbd.c115 struct fb_info *info; local
119 info = dev->si_drv1;
123 bcopy(info, (struct fbtype *)data, sizeof(struct fbtype));
136 *(u_int *)data = info->fb_stride;
140 if (info->setblankmode != NULL)
141 error = info->setblankmode(info->fb_priv, *(int *)data);
169 struct fb_info *info; local
171 info = dev->si_drv1;
173 if (info
189 struct fb_info *info; local
217 fbd_find(struct fb_info* info) argument
231 fbd_register(struct fb_info* info) argument
265 fbd_unregister(struct fb_info* info) argument
[all...]
/freebsd-11.0-release/sys/dev/usb/
H A Dusb_lookup.c71 const struct usbd_lookup_info *info)
87 (id->idVendor != info->idVendor)) {
91 (id->idProduct != info->idProduct)) {
95 (id->bcdDevice_lo > info->bcdDevice)) {
99 (id->bcdDevice_hi < info->bcdDevice)) {
103 (id->bDeviceClass != info->bDeviceClass)) {
107 (id->bDeviceSubClass != info->bDeviceSubClass)) {
111 (id->bDeviceProtocol != info->bDeviceProtocol)) {
115 (id->bInterfaceClass != info->bInterfaceClass)) {
119 (id->bInterfaceSubClass != info
70 usbd_lookup_id_by_info(const struct usb_device_id *id, usb_size_t sizeof_id, const struct usbd_lookup_info *info) argument
[all...]
/freebsd-11.0-release/contrib/libreadline/doc/
H A DMakefile.in75 INFOOBJ = readline.info history.info rluserman.info
99 all: info dvi html ps text
100 nodvi: info html text
102 info: $(INFOOBJ)
113 readline.info: $(RLSRC)
119 rluserman.info: $(RLSRC)
125 history.info: ${HISTSRC}
199 if test -f readline.info; the
[all...]
/freebsd-11.0-release/contrib/gcc/
H A Dtree-nested.c136 create_tmp_var_for (struct nesting_info *info, tree type, const char *prefix) argument
148 DECL_CONTEXT (tmp_var) = info->context;
149 TREE_CHAIN (tmp_var) = info->new_local_var_chain;
154 info->new_local_var_chain = tmp_var;
214 get_frame_type (struct nesting_info *info) argument
216 tree type = info->frame_type;
224 IDENTIFIER_POINTER (DECL_NAME (info->context)),
229 info->frame_type = type;
230 info->frame_decl = create_tmp_var_for (info, typ
267 lookup_field_for_decl(struct nesting_info *info, tree decl, enum insert_option insert) argument
325 get_chain_decl(struct nesting_info *info) argument
362 get_chain_field(struct nesting_info *info) argument
386 init_tmp_var(struct nesting_info *info, tree exp, tree_stmt_iterator *tsi) argument
401 tsi_gimplify_val(struct nesting_info *info, tree exp, tree_stmt_iterator *tsi) argument
413 save_tmp_var(struct nesting_info *info, tree exp, tree_stmt_iterator *tsi) argument
468 lookup_tramp_for_decl(struct nesting_info *info, tree decl, enum insert_option insert) argument
511 get_nl_goto_field(struct nesting_info *info) argument
686 walk_body(walk_tree_fn callback, struct nesting_info *info, tree *stmt_p) argument
701 walk_function(walk_tree_fn callback, struct nesting_info *info) argument
769 struct nesting_info *info = GGC_CNEW (struct nesting_info); local
795 get_static_chain(struct nesting_info *info, tree target_context, tree_stmt_iterator *tsi) argument
827 get_frame_field(struct nesting_info *info, tree target_context, tree field, tree_stmt_iterator *tsi) argument
865 get_nonlocal_debug_decl(struct nesting_info *info, tree decl) argument
947 struct nesting_info *info = wi->info; local
1136 struct nesting_info *info = wi->info; local
1198 get_local_debug_decl(struct nesting_info *info, tree decl, tree field) argument
1254 struct nesting_info *info = wi->info; local
1422 struct nesting_info *info = wi->info; local
1491 struct nesting_info *info = wi->info, *i; local
1559 struct nesting_info *info = wi->info; local
1598 struct nesting_info *info = wi->info, *i; local
1677 struct nesting_info *info = wi->info; local
[all...]
/freebsd-11.0-release/contrib/subversion/subversion/libsvn_subr/
H A Dopt.h35 /* Print version version info for PGM_NAME to the console. If QUIET is
38 * version information. If VERBOSE is true, print running system info.
45 const svn_version_extended_t *info,
/freebsd-11.0-release/contrib/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_symbolizer_mac.cc32 Dl_info info; local
33 int result = dladdr((const void *)addr, &info);
35 const char *demangled = DemangleCXXABI(info.dli_sname);
36 stack->info.function = demangled ? internal_strdup(demangled) : nullptr;
41 Dl_info info; local
42 int result = dladdr((const void *)addr, &info);
44 const char *demangled = DemangleCXXABI(info.dli_sname);
46 datainfo->start = (uptr)info.dli_saddr;
165 if (!ParseCommandOutput(buf, addr, &stack->info.function, &stack->info
174 SymbolizeData(uptr addr, DataInfo *info) argument
[all...]
/freebsd-11.0-release/sys/dev/fdt/
H A Dfdt_clock.h34 * Get info about the Nth clock listed in consumer's "clocks" property.
38 int fdt_clock_get_info(device_t consumer, int n, struct fdt_clock_info *info);
/freebsd-11.0-release/sys/sys/
H A Delf64.h156 #define ELF64_R_SYM(info) ((info) >> 32)
157 #define ELF64_R_TYPE(info) ((info) & 0xffffffffL)
162 #define ELF64_R_TYPE_DATA(info) (((Elf64_Xword)(info)<<32)>>40)
163 #define ELF64_R_TYPE_ID(info) (((Elf64_Xword)(info)<<56)>>56)
180 Elf64_Half m_stride; /* stride info */
183 #define ELF64_M_SYM(info) ((inf
[all...]
/freebsd-11.0-release/tools/debugscripts/
H A Dkgdb53 info="$crashpath/info.$corenum"
55 #Get the kernel source compile dir from the info file
56 kernsrc="`awk 'i == 1 { split($0, a, ":"); print a[2]; i = 0 } $1 == "Versionstring:" { i = 1 }' < "$info"`"
/freebsd-11.0-release/contrib/binutils/binutils/
H A Ddebug.c603 debug_add_to_namespace (struct debug_handle *info ATTRIBUTE_UNUSED,
638 debug_add_to_current_namespace (struct debug_handle *info, const char *name,
644 if (info->current_unit == NULL
645 || info->current_file == NULL)
651 if (info->current_block != NULL)
652 nsp = &info->current_block->locals;
654 nsp = &info->current_file->globals;
656 return debug_add_to_namespace (info, nsp, name, kind, linkage);
678 struct debug_handle *info = (struct debug_handle *) handle;
694 info
637 debug_add_to_current_namespace(struct debug_handle *info, const char *name, enum debug_object_kind kind, enum debug_object_linkage linkage) argument
676 struct debug_handle *info = (struct debug_handle *) handle; local
717 struct debug_handle *info = (struct debug_handle *) handle; local
769 struct debug_handle *info = (struct debug_handle *) handle; local
824 struct debug_handle *info = (struct debug_handle *) handle; local
859 struct debug_handle *info = (struct debug_handle *) handle; local
891 struct debug_handle *info = (struct debug_handle *) handle; local
929 struct debug_handle *info = (struct debug_handle *) handle; local
959 struct debug_handle *info = (struct debug_handle *) handle; local
1038 struct debug_handle *info = (struct debug_handle *) handle; local
1059 struct debug_handle *info = (struct debug_handle *) handle; local
1081 struct debug_handle *info = (struct debug_handle *) handle; local
1123 struct debug_handle *info = (struct debug_handle *) handle; local
1195 struct debug_handle *info = (struct debug_handle *) handle; local
1219 struct debug_handle *info = (struct debug_handle *) handle; local
1230 struct debug_handle *info = (struct debug_handle *) handle; local
1249 struct debug_handle *info = (struct debug_handle *) handle; local
1259 struct debug_handle *info = (struct debug_handle *) handle; local
1269 struct debug_handle *info = (struct debug_handle *) handle; local
1282 struct debug_handle *info = (struct debug_handle *) handle; local
1315 struct debug_handle *info = (struct debug_handle *) handle; local
1348 struct debug_handle *info = (struct debug_handle *) handle; local
1372 struct debug_handle *info = (struct debug_handle *) handle; local
1399 struct debug_handle *info = (struct debug_handle *) handle; local
1427 struct debug_handle *info = (struct debug_handle *) handle; local
1448 struct debug_handle *info = (struct debug_handle *) handle; local
1482 struct debug_handle *info = (struct debug_handle *) handle; local
1514 struct debug_handle *info = (struct debug_handle *) handle; local
1545 struct debug_handle *info = (struct debug_handle *) handle; local
1576 struct debug_handle *info = (struct debug_handle *) handle; local
1605 struct debug_handle *info = (struct debug_handle *) handle; local
1625 struct debug_handle *info = (struct debug_handle *) handle; local
1647 struct debug_handle *info = (struct debug_handle *) handle; local
1829 struct debug_handle *info = (struct debug_handle *) handle; local
1875 struct debug_handle *info = (struct debug_handle *) handle; local
1943 struct debug_handle *info = (struct debug_handle *) handle; local
1997 struct debug_handle *info = (struct debug_handle *) handle; local
2310 struct debug_handle *info = (struct debug_handle *) handle; local
2367 debug_write_name(struct debug_handle *info, const struct debug_write_fns *fns, void *fhandle, struct debug_name *n) argument
2415 debug_write_type(struct debug_handle *info, const struct debug_write_fns *fns, void *fhandle, struct debug_type *type, struct debug_name *name) argument
2660 debug_write_class_type(struct debug_handle *info, const struct debug_write_fns *fns, void *fhandle, struct debug_type *type, const char *tag) argument
2809 debug_write_function(struct debug_handle *info, const struct debug_write_fns *fns, void *fhandle, const char *name, enum debug_object_linkage linkage, struct debug_function *function) argument
2848 debug_write_block(struct debug_handle *info, const struct debug_write_fns *fns, void *fhandle, struct debug_block *block) argument
2896 debug_write_linenos(struct debug_handle *info, const struct debug_write_fns *fns, void *fhandle, bfd_vma address) argument
2936 debug_set_class_id(struct debug_handle *info, const char *tag, struct debug_type *type) argument
2998 debug_type_samep(struct debug_handle *info, struct debug_type *t1, struct debug_type *t2) argument
3233 debug_class_type_samep(struct debug_handle *info, struct debug_type *t1, struct debug_type *t2) argument
[all...]

Completed in 153 milliseconds

1234567891011>>