Searched refs:ar (Results 1 - 25 of 276) sorted by relevance

1234567891011>>

/freebsd-9.3-release/contrib/binutils/binutils/
H A Dranlib.sh3 ar s "$1"
/freebsd-9.3-release/sys/security/audit/
H A Daudit_arg.c66 struct kaudit_record *ar; local
68 ar = currecord();
69 if (ar == NULL)
72 ar->k_ar.ar_arg_addr = addr;
73 ARG_SET_VALID(ar, ARG_ADDR);
79 struct kaudit_record *ar; local
81 ar = currecord();
82 if (ar == NULL)
85 ar->k_ar.ar_arg_exitstatus = status;
86 ar
93 struct kaudit_record *ar; local
106 struct kaudit_record *ar; local
119 struct kaudit_record *ar; local
132 struct kaudit_record *ar; local
145 struct kaudit_record *ar; local
158 struct kaudit_record *ar; local
171 struct kaudit_record *ar; local
184 struct kaudit_record *ar; local
197 struct kaudit_record *ar; local
210 struct kaudit_record *ar; local
223 struct kaudit_record *ar; local
236 struct kaudit_record *ar; local
249 struct kaudit_record *ar; local
263 struct kaudit_record *ar; local
285 struct kaudit_record *ar; local
298 struct kaudit_record *ar; local
312 struct kaudit_record *ar; local
325 struct kaudit_record *ar; local
338 struct kaudit_record *ar; local
351 struct kaudit_record *ar; local
364 struct kaudit_record *ar; local
378 struct kaudit_record *ar; local
391 struct kaudit_record *ar; local
418 struct kaudit_record *ar; local
431 struct kaudit_record *ar; local
446 struct kaudit_record *ar; local
477 struct kaudit_record *ar; local
490 struct kaudit_record *ar; local
508 struct kaudit_record *ar; local
530 struct kaudit_record *ar; local
552 struct kaudit_record *ar; local
565 struct kaudit_record *ar; local
578 struct kaudit_record *ar; local
592 struct kaudit_record *ar; local
605 struct kaudit_record *ar; local
618 struct kaudit_record *ar; local
633 struct kaudit_record *ar; local
651 struct kaudit_record *ar; local
725 struct kaudit_record *ar; local
738 struct kaudit_record *ar; local
798 struct kaudit_record *ar; local
814 struct kaudit_record *ar; local
833 struct kaudit_record *ar; local
854 struct kaudit_record *ar; local
872 struct kaudit_record *ar; local
890 struct kaudit_record *ar; local
[all...]
H A Daudit_bsm.c59 static void audit_sys_auditon(struct audit_record *ar,
183 * XXXAUDIT: These macros assume that 'kar', 'ar', 'rec', and 'tok' in the
188 tok = au_to_arg32(argnum, "at fd 1", ar->ar_arg_atfd1); \
195 tok = au_to_arg32(argnum, "at fd 2", ar->ar_arg_atfd2); \
202 tok = au_to_path(ar->ar_arg_upath1); \
209 tok = au_to_path(ar->ar_arg_upath2); \
216 tok = au_to_arg32(1, "at fd", ar->ar_arg_atfd); \
220 tok = au_to_attr32(&ar->ar_arg_vnode1); \
230 tok = au_to_attr32(&ar->ar_arg_vnode1); \
237 tok = au_to_attr32(&ar
321 audit_sys_auditon(struct audit_record *ar, struct au_record *rec) argument
468 struct audit_record *ar; local
[all...]
H A Daudit.c211 struct kaudit_record *ar; local
215 KASSERT(sizeof(*ar) == size, ("audit_record_ctor: wrong size"));
218 ar = mem;
219 bzero(ar, sizeof(*ar));
220 ar->k_ar.ar_magic = AUDIT_RECORD_MAGIC;
221 nanotime(&ar->k_ar.ar_starttime);
227 cru2x(cred, &ar->k_ar.ar_subj_cred);
228 ar->k_ar.ar_subj_ruid = cred->cr_ruid;
229 ar
242 struct kaudit_record *ar; local
357 struct kaudit_record *ar; local
382 audit_free(struct kaudit_record *ar) argument
389 audit_commit(struct kaudit_record *ar, int error, int retval) argument
653 struct kaudit_record *ar; local
[all...]
/freebsd-9.3-release/usr.bin/make/
H A Darch.c93 #include <ar.h>
162 * Name of the filename table. The 4.4BSD ar format did not use this, but
171 * on ar.h because we want this to continue working even when the
172 * definition is removed from ar.h.
482 ArchArchiveClose(struct arfile *ar) argument
485 if (ar->nametab != NULL)
486 free(ar->nametab);
487 free(ar->member);
488 if (ar->fp != NULL) {
489 if (fclose(ar
502 struct arfile *ar; local
539 ArchArchiveNext(struct arfile *ar) argument
762 ArchArchiveTouch(struct arfile *ar, int64_t ts) argument
806 struct arfile *ar; local
884 Arch *ar; /* Archive descriptor */ local
992 struct arfile *ar; local
1021 struct arfile *ar; /* Open archive */ local
[all...]
/freebsd-9.3-release/lib/libelf/
H A Delf_getarsym.c35 elf_getarsym(Elf *ar, size_t *ptr) argument
43 if (ar == NULL || ar->e_kind != ELF_K_AR)
45 else if ((symtab = ar->e_u.e_ar.e_symtab) != NULL)
46 n = ar->e_u.e_ar.e_symtabsz;
47 else if (ar->e_u.e_ar.e_rawsymtab)
48 symtab = _libelf_ar_process_symtab(ar, &n);
H A Delf_rand.c30 #include <ar.h>
36 elf_rand(Elf *ar, off_t offset) argument
40 if (ar == NULL || ar->e_kind != ELF_K_AR ||
42 offset + sizeof(struct ar_hdr) >= ar->e_rawsize) {
47 arh = (struct ar_hdr *) (ar->e_rawfile + offset);
55 ar->e_u.e_ar.e_next = offset;
/freebsd-9.3-release/usr.bin/clang/llvm-ar/
H A DMakefile5 PROG_CXX=llvm-ar
7 SRCDIR= tools/llvm-ar
8 SRCS= llvm-ar.cpp
/freebsd-9.3-release/contrib/libarchive/libarchive/
H A Darchive_read_support_format_ar.c52 struct ar { struct
61 * Define structure of the "ar" header.
88 static int ar_parse_common_header(struct ar *ar, struct archive_entry *,
95 struct ar *ar; local
98 ar = (struct ar *)malloc(sizeof(*ar));
99 if (ar
127 struct ar *ar; local
164 struct ar *ar; local
412 ar_parse_common_header(struct ar *ar, struct archive_entry *entry, const char *h) argument
440 struct ar *ar; local
482 struct ar* ar; local
500 struct ar *ar; local
[all...]
H A Darchive_write_set_format_ar.c55 * Define structure of the "ar" header.
91 a->archive.archive_format_name = "ar (BSD)";
103 a->archive.archive_format_name = "ar (GNU/SVR4)";
114 struct ar_w *ar; local
120 ar = (struct ar_w *)malloc(sizeof(*ar));
121 if (ar == NULL) {
122 archive_set_error(&a->archive, ENOMEM, "Can't allocate ar data");
125 memset(ar, 0, sizeof(*ar));
143 struct ar_w *ar; local
353 struct ar_w *ar; local
388 struct ar_w *ar; local
425 struct ar_w *ar; local
[all...]
/freebsd-9.3-release/gnu/usr.bin/binutils/ar/
H A DMakefile8 PROGNAME= gnu-ar
9 MAN= gnu-ar.1
10 gnu-ar.1: ar.1
12 CLEANFILES+= gnu-ar.1
14 PROG= ar
15 SRCS= ar.c not-ranlib.c
/freebsd-9.3-release/contrib/libucl/tests/
H A Dtest_generate.c32 ucl_object_t *obj, *cur, *ar; local
65 ar = ucl_array_append (NULL, cur);
67 ar = ucl_array_append (ar, cur);
69 ar = ucl_array_prepend (ar, cur);
73 ar = ucl_array_append (ar, cur);
74 cur = ucl_array_delete (ar, cur);
78 ar
[all...]
/freebsd-9.3-release/lib/csu/ia64/
H A Dcrti.S44 .save ar.pfs,loc1
45 alloc loc1=ar.pfs,0,2,0,0
56 .save ar.pfs,loc1
57 alloc loc1=ar.pfs,0,2,0,0
H A Dcrtn.S37 mov ar.pfs=loc1
43 mov ar.pfs=loc1
/freebsd-9.3-release/sys/boot/ia64/ski/
H A Dstart.S37 mov ar.rsc=0
47 mov ar.bspstore=r2
53 mov ar.rsc=3
54 mov ar.fpsr=r14
/freebsd-9.3-release/usr.bin/ar/
H A DMakefile5 PROG= ar
6 SRCS= ar.c acplex.l acpyacc.y read.c util.c write.c y.tab.h
16 LINKS= ${BINDIR}/ar ${BINDIR}/ranlib
17 MLINKS= ar.1 ranlib.1
/freebsd-9.3-release/sys/cddl/contrib/opensolaris/common/atomic/ia64/
H A Dopensolaris_atomic.S37 mov ar.ccv = r33
39 cmpxchg4.acq r8 = [r32], r34, ar.ccv
48 mov ar.ccv = r33
50 cmpxchg8.acq r8 = [r32], r34, ar.ccv
62 mov ar.ccv = r16
65 cmpxchg8.acq r17 = [r32], r8, ar.ccv
79 mov ar.ccv = r16
82 cmpxchg1.acq r17 = [r32], r8, ar.ccv
/freebsd-9.3-release/sys/ia64/ia64/
H A Dphysical.S37 * loc0 = ar.pfs
47 .save ar.pfs,loc0
48 alloc loc0=ar.pfs,5,6,4,0
62 mov r17=ar.rsc
65 mov ar.rsc=0
71 mov loc4=ar.bsp // save ar.bsp
72 mov r18=ar.rnat
98 mov ar.bspstore=r19
101 mov ar
[all...]
H A Dsyscall.S35 * address stored in ar.k5. The contents of ar.pfs and rp should be
40 * The address in ar.k5 is the start of the EPC gateway page and also
47 * r9 - copy of ar.pfs
54 * ar.pfs - restored from r9
75 mov r14=ar.k7 // Memory stack
76 mov r15=ar.k6 // Register stack
93 mov ar.rnat=r22
95 mov ar.rsc=r24
96 mov ar
[all...]
/freebsd-9.3-release/contrib/ipfilter/ipsend/
H A Darp.c76 struct arpreq ar; local
90 bzero((char *)&ar, sizeof(ar));
91 sin = (struct sockaddr_in *)&ar.arp_pa;
111 if (ioctl(sfd, SIOCGARP, (caddr_t)&ar) == -1)
132 if ((ar.arp_ha.sa_data[0] == 0) && (ar.arp_ha.sa_data[1] == 0) &&
133 (ar.arp_ha.sa_data[2] == 0) && (ar.arp_ha.sa_data[3] == 0) &&
134 (ar
[all...]
H A Dlarp.c63 struct arpreq ar; local
71 bzero((char *)&ar, sizeof(ar));
72 sin = (struct sockaddr_in *)&ar.arp_pa;
83 if (ioctl(s, SIOCGARP, (caddr_t)&ar) == -1)
91 bcopy(ar.arp_ha.sa_data, ether, 6);
/freebsd-9.3-release/lib/libkse/arch/ia64/ia64/
H A Denter_uts.S37 mov ar.rsc=0xc
48 mov ar.bspstore=in2
54 mov ar.rsc=0xf
/freebsd-9.3-release/release/picobsd/tinyware/help/
H A Dhelp.c33 #include <ar.h>
89 struct ar_hdr ar; local
98 if (fread((void *)&ar, sizeof ar, 1, fd)!=1) return 1;
99 if (strncmp(ar.ar_fmag, ARFMAG, 2)) return 1;
101 p=ar.ar_size;
105 } while (p<&ar.ar_size[sizeof ar.ar_size]);
106 if (!strncmp(ar.ar_name, aname, strlen(aname))) break;
134 while (fread((void *)&ar, sizeo
[all...]
/freebsd-9.3-release/lib/libc/ia64/gen/
H A Dsetjmp.S48 alloc loc0=ar.pfs,1,2,3,0
59 alloc r15=ar.pfs,1,0,0,0 // drop register frame
61 mov ar.pfs=r14 // restore ar.pfs
67 alloc loc0=ar.pfs,2,2,3,0
78 alloc r15=ar.pfs,2,0,0,0 // drop register frame
80 mov ar.pfs=r14 // restore ar.pfs
/freebsd-9.3-release/sys/dev/drm2/
H A Ddrm_linux_list_sort.c58 struct list_head **ar, *le; local
64 ar = malloc(sizeof(struct list_head *) * count, M_TEMP, M_WAITOK);
67 ar[i++] = le;
70 qsort_r(ar, count, sizeof(struct list_head *), &thunk, drm_le_cmp);
73 list_add_tail(ar[i], head);
74 free(ar, M_TEMP);

Completed in 163 milliseconds

1234567891011>>