/dflybsd-src/contrib/libarchive/libarchive/ |
H A D | archive_read_support_format_ar.c | 52 struct ar { struct 94 static int ar_parse_common_header(struct ar *ar, struct archive_entry *, 101 struct ar *ar; in archive_read_support_format_ar() local 107 ar = (struct ar *)calloc(1, sizeof(*ar)); in archive_read_support_format_ar() 108 if (ar == NULL) { in archive_read_support_format_ar() 113 ar->strtab = NULL; in archive_read_support_format_ar() 116 ar, in archive_read_support_format_ar() 129 free(ar); in archive_read_support_format_ar() 138 struct ar *ar; in archive_read_format_ar_cleanup() local 140 ar = (struct ar *)(a->format->data); in archive_read_format_ar_cleanup() [all …]
|
H A D | archive_write_set_format_ar.c | 124 struct ar_w *ar; in archive_write_set_format_ar() local 130 ar = (struct ar_w *)calloc(1, sizeof(*ar)); in archive_write_set_format_ar() 131 if (ar == NULL) { in archive_write_set_format_ar() 135 a->format_data = ar; in archive_write_set_format_ar() 152 struct ar_w *ar; in archive_write_ar_header() local 158 ar = (struct ar_w *)a->format_data; in archive_write_ar_header() 159 ar->is_strtab = 0; in archive_write_ar_header() 178 if (!ar->wrote_global_header) { in archive_write_ar_header() 180 ar->wrote_global_header = 1; in archive_write_ar_header() 206 ar->is_strtab = 1; in archive_write_ar_header() [all …]
|
H A D | archive_read_extract2.c | 44 static int copy_data(struct archive *ar, struct archive *aw); 126 copy_data(struct archive *ar, struct archive *aw) in copy_data() argument 134 extract = __archive_read_get_extract((struct archive_read *)ar); in copy_data() 138 r = archive_read_data_block(ar, &buff, &size, &offset); in copy_data() 147 archive_set_error(ar, archive_errno(aw), in copy_data()
|
/dflybsd-src/sys/vfs/autofs/ |
H A D | autofs.c | 199 struct autofs_request *ar = context; in autofs_task() local 203 ar->ar_id, ar->ar_path, autofs_timeout); in autofs_task() 205 ar->ar_error = ETIMEDOUT; in autofs_task() 206 ar->ar_wildcards = true; in autofs_task() 207 ar->ar_done = true; in autofs_task() 208 ar->ar_in_progress = false; in autofs_task() 305 struct autofs_request *ar; in autofs_trigger_one() local 324 TAILQ_FOREACH(ar, &autofs_softc->sc_requests, ar_next) { in autofs_trigger_one() 325 if (strcmp(ar->ar_path, path) || strcmp(ar->ar_key, key)) in autofs_trigger_one() 327 KASSERT(strcmp(ar->ar_from, amp->am_from) == 0, in autofs_trigger_one() [all …]
|
H A D | autofs_vfsops.c | 214 struct autofs_request *ar; in autofs_unmount() local 220 TAILQ_FOREACH(ar, &autofs_softc->sc_requests, ar_next) { in autofs_unmount() 221 if (ar->ar_mount != amp) in autofs_unmount() 223 ar->ar_error = ENXIO; in autofs_unmount() 224 ar->ar_done = true; in autofs_unmount() 225 ar->ar_in_progress = false; in autofs_unmount()
|
/dflybsd-src/contrib/elftoolchain/libelf/ |
H A D | elf_getarsym.c | 34 elf_getarsym(Elf *ar, size_t *ptr) in elf_getarsym() argument 42 if (ar == NULL || ar->e_kind != ELF_K_AR) in elf_getarsym() 44 else if ((symtab = ar->e_u.e_ar.e_symtab) != NULL) in elf_getarsym() 45 n = ar->e_u.e_ar.e_symtabsz; in elf_getarsym() 46 else if (ar->e_u.e_ar.e_rawsymtab) in elf_getarsym() 47 symtab = (ar->e_flags & LIBELF_F_AR_VARIANT_SVR4) ? in elf_getarsym() 48 _libelf_ar_process_svr4_symtab(ar, &n) : in elf_getarsym() 49 _libelf_ar_process_bsd_symtab(ar, &n); in elf_getarsym()
|
H A D | elf_rand.c | 35 elf_rand(Elf *ar, off_t offset) in elf_rand() argument 39 if (ar == NULL || ar->e_kind != ELF_K_AR || in elf_rand() 41 (size_t) offset + sizeof(struct ar_hdr) >= ar->e_rawsize) { in elf_rand() 46 arh = (struct ar_hdr *) (ar->e_rawfile + offset); in elf_rand() 54 ar->e_u.e_ar.e_next = offset; in elf_rand()
|
H A D | libelf_ar_util.c | 80 _libelf_ar_get_translated_name(const struct ar_hdr *arh, Elf *ar) in _libelf_ar_get_translated_name() argument 89 assert(ar->e_kind == ELF_K_AR); in _libelf_ar_get_translated_name() 90 assert((const unsigned char *) arh >= ar->e_rawfile && in _libelf_ar_get_translated_name() 91 (const unsigned char *) arh < ar->e_rawfile + ar->e_rawsize); in _libelf_ar_get_translated_name() 114 if (offset > ar->e_u.e_ar.e_rawstrtabsz) { in _libelf_ar_get_translated_name() 119 p = q = ar->e_u.e_ar.e_rawstrtab + offset; in _libelf_ar_get_translated_name() 120 r = ar->e_u.e_ar.e_rawstrtab + ar->e_u.e_ar.e_rawstrtabsz; in _libelf_ar_get_translated_name()
|
/dflybsd-src/contrib/dhcpcd/src/ |
H A D | arp.c | 76 struct arphdr ar; in arp_request() local 80 ar.ar_hrd = htons(ifp->hwtype); in arp_request() 81 ar.ar_pro = htons(ETHERTYPE_IP); in arp_request() 82 ar.ar_hln = ifp->hwlen; in arp_request() 83 ar.ar_pln = sizeof(tip->s_addr); in arp_request() 84 ar.ar_op = htons(ARPOP_REQUEST); in arp_request() 100 APPEND(&ar, sizeof(ar)); in arp_request() 242 struct arphdr ar; in arp_packet() local 267 if (len < sizeof(ar)) in arp_packet() 269 memcpy(&ar, data, sizeof(ar)); in arp_packet() [all …]
|
/dflybsd-src/contrib/bmake/ |
H A D | arch.c | 464 Arch *ar; /* Archive descriptor */ in ArchStatMember() local 484 ar = ln->datum; in ArchStatMember() 485 hdr = HashTable_FindValue(&ar->members, member); in ArchStatMember() 496 hdr = HashTable_FindValue(&ar->members, copy); in ArchStatMember() 538 ar = bmake_malloc(sizeof *ar); in ArchStatMember() 539 ar->name = bmake_strdup(archive); in ArchStatMember() 540 ar->fnametab = NULL; in ArchStatMember() 541 ar->fnamesize = 0; in ArchStatMember() 542 HashTable_Init(&ar->members); in ArchStatMember() 575 switch (ArchSVR4Entry(ar, memName, size, arch)) { in ArchStatMember() [all …]
|
/dflybsd-src/contrib/gcc-4.7/gcc/ |
H A D | tree-complex.c | 861 tree ar, tree ai, tree br, tree bi, in expand_complex_addition() argument 870 rr = gimplify_build2 (gsi, code, inner_type, ar, br); in expand_complex_addition() 875 rr = ar; in expand_complex_addition() 884 rr = gimplify_build2 (gsi, MINUS_EXPR, inner_type, ar, br); in expand_complex_addition() 891 rr = ar; in expand_complex_addition() 896 rr = gimplify_build2 (gsi, code, inner_type, ar, br); in expand_complex_addition() 901 rr = ar; in expand_complex_addition() 908 rr = gimplify_build2 (gsi, code, inner_type, ar, br); in expand_complex_addition() 921 rr = gimplify_build2 (gsi, code, inner_type, ar, br); in expand_complex_addition() 936 expand_complex_libcall (gimple_stmt_iterator *gsi, tree ar, tree ai, in expand_complex_libcall() argument [all …]
|
/dflybsd-src/usr.sbin/mfiutil/ |
H A D | mfi_config.c | 93 struct mfi_array *ar; in mfi_config_lookup_array() local 99 ar = (struct mfi_array *)p; in mfi_config_lookup_array() 100 if (ar->array_ref == array_ref) in mfi_config_lookup_array() 101 return (ar); in mfi_config_lookup_array() 397 struct mfi_array *ar = (struct mfi_array *)arrayp; in build_array() local 400 ar->size = array_info->drives[0].coerced_size; in build_array() 401 ar->num_drives = array_info->drive_count; in build_array() 402 ar->array_ref = find_next_array(state); in build_array() 409 ar->array_ref); in build_array() 410 if (ar->size > array_info->drives[i].coerced_size) in build_array() [all …]
|
/dflybsd-src/lib/libexecinfo/ |
H A D | Makefile | 25 lib${LIB}.a: ${SRCS:.c=.o} script.ar 28 ${AR} -M < script.ar 31 lib${LIB}_p.a: ${SRCS:.c=.po} script_p.ar 34 ${AR} -M < script_p.ar 37 script.ar: 48 script_p.ar: 59 GENFILES= script.ar script_p.ar
|
/dflybsd-src/contrib/gcc-8.0/gcc/ |
H A D | tree-complex.c | 911 tree ar, tree ai, tree br, tree bi, in expand_complex_addition() argument 920 rr = gimplify_build2 (gsi, code, inner_type, ar, br); in expand_complex_addition() 925 rr = ar; in expand_complex_addition() 934 rr = gimplify_build2 (gsi, MINUS_EXPR, inner_type, ar, br); in expand_complex_addition() 941 rr = ar; in expand_complex_addition() 946 rr = gimplify_build2 (gsi, code, inner_type, ar, br); in expand_complex_addition() 951 rr = ar; in expand_complex_addition() 958 rr = gimplify_build2 (gsi, code, inner_type, ar, br); in expand_complex_addition() 971 rr = gimplify_build2 (gsi, code, inner_type, ar, br); in expand_complex_addition() 986 expand_complex_libcall (gimple_stmt_iterator *gsi, tree ar, tree ai, in expand_complex_libcall() argument [all …]
|
/dflybsd-src/gnu/lib/gcc80/libstdcxx/product/ |
H A D | Makefile | 46 libstdc++.a: ${SRCS:.cc=.o} script.ar 49 ${AR} -M < script.ar 53 libstdc++_p.a: ${SRCS:.cc=.po} script_p.ar 56 ${AR} -M < script_p.ar 66 script.ar: 77 script_p.ar: 92 GENFILES= gstdint.h script.ar script_p.ar ${PROBLEMSXX} libstdcxx.map
|
/dflybsd-src/gnu/usr.bin/binutils227/block2/ar/ |
H A D | Makefile | 6 PROG= ar 7 SRCS= ar.c not-ranlib.c arsup.c rename.c binemul.c emul_vanilla.c \ 9 MFILE= ar${MANPAGEVER}.1 23 ${MFILE}: ${SRCDIR}/binutils/doc/ar.1 29 MLINKS+= ${MFILE} ar.1
|
/dflybsd-src/lib/libc/rpc/ |
H A D | rpc_prot.c | 98 xdr_accepted_reply(XDR *xdrs, struct accepted_reply *ar) in xdr_accepted_reply() argument 103 assert(ar != NULL); in xdr_accepted_reply() 105 par_stat = &ar->ar_stat; in xdr_accepted_reply() 108 if (! xdr_opaque_auth(xdrs, &(ar->ar_verf))) in xdr_accepted_reply() 112 switch (ar->ar_stat) { in xdr_accepted_reply() 115 return ((*(ar->ar_results.proc))(xdrs, ar->ar_results.where)); in xdr_accepted_reply() 118 if (!xdr_rpcvers(xdrs, &(ar->ar_vers.low))) in xdr_accepted_reply() 120 return (xdr_rpcvers(xdrs, &(ar->ar_vers.high))); in xdr_accepted_reply()
|
/dflybsd-src/sbin/iscontrol/ |
H A D | config.c | 234 char *lp, *p, **ar; in getConfig() local 237 ar = Ar; in getConfig() 276 *ar++ = strdup(lp); in getConfig() 281 *ar = NULL; in getConfig() 282 *nargs = ar - Ar; in getConfig() 283 return ar - Ar; in getConfig() 342 char **ar; in parseArgs() local 346 for(ar = args; nargs > 0; nargs--, ar++) { in parseArgs() 347 p = strchr(*ar, '='); in parseArgs() 356 if((tk = keyLookup(*ar)) == NULL) in parseArgs()
|
/dflybsd-src/gnu/usr.bin/binutils234/block2/ar/ |
H A D | Makefile | 6 PROG= ar 7 SRCS= ar.c not-ranlib.c arsup.c rename.c binemul.c emul_vanilla.c \ 9 MFILE= ar${MANPAGEVER}.1 24 MLINKS+= ${MFILE} ar.1
|
/dflybsd-src/test/stress/stress2/misc/ |
H A D | ldt.sh | 142 unsigned char ar; 145 ar = readbyte(sel, 0); 146 if (ar == '1') 149 fprintf(stderr, "test%d.1 failed, ar %x\n", tnum, ar); 151 ar = readbyte(sel, 0); 152 if (ar == '2') 155 fprintf(stderr, "test%d.2 failed, ar %x\n", tnum, ar);
|
/dflybsd-src/share/timedef/ |
H A D | is_IS.ISO8859-15.src | 21 jan�ar 22 febr�ar 69 jan�ar 70 febr�ar
|
H A D | is_IS.UTF-8.src | 21 janúar 22 febrúar 69 janúar 70 febrúar
|
/dflybsd-src/sys/dev/netif/mii_layer/ |
H A D | ip1000phy.c | 314 uint32_t ar, lpar; in ip1000phy_status() local 356 ar = PHY_READ(sc, IP1000PHY_MII_ANAR); in ip1000phy_status() 363 if ((ar & IP1000PHY_ANAR_PAUSE) && (lpar & IP1000PHY_ANLPAR_PAUSE)) in ip1000phy_status() 365 else if (!(ar & IP1000PHY_ANAR_PAUSE) && (ar & IP1000PHY_ANAR_APAUSE) && in ip1000phy_status() 368 else if ((ar & IP1000PHY_ANAR_PAUSE) && (ar & IP1000PHY_ANAR_APAUSE) && in ip1000phy_status()
|
/dflybsd-src/sys/dev/disk/mpt/ |
H A D | mpt_raid.c | 787 ar = REQ_TO_RAID_ACTION_RESULT(req); 790 || (ar->action_status != MPI_RAID_ACTION_ASTATUS_SUCCESS)) { 793 ar->action_status); 866 struct mpt_raid_action_result *ar; 900 ar = REQ_TO_RAID_ACTION_RESULT(req); 903 || (ar->action_status != MPI_RAID_ACTION_ASTATUS_SUCCESS)) { 906 rv, req->IOCStatus, ar->action_status); 917 struct mpt_raid_action_result *ar; in mpt_verify_mwce() local 982 ar = REQ_TO_RAID_ACTION_RESULT(req); in mpt_verify_mwce() 985 || (ar->action_status != MPI_RAID_ACTION_ASTATUS_SUCCESS)) { in mpt_verify_mwce() [all …]
|
/dflybsd-src/contrib/binutils-2.34/libctf/ |
H A D | ctf-decl.c | 82 ctf_arinfo_t ar; in ctf_decl_push() local 93 (void) ctf_array_info (fp, type, &ar); in ctf_decl_push() 94 ctf_decl_push (cd, fp, ar.ctr_contents); in ctf_decl_push() 95 n = ar.ctr_nelems; in ctf_decl_push()
|