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

1234567891011

/freebsd-10.0-release/contrib/binutils/binutils/
H A Dranlib.sh3 ar s "$1"
/freebsd-10.0-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
479 struct kaudit_record *ar; local
492 struct kaudit_record *ar; local
510 struct kaudit_record *ar; local
532 struct kaudit_record *ar; local
554 struct kaudit_record *ar; local
567 struct kaudit_record *ar; local
580 struct kaudit_record *ar; local
594 struct kaudit_record *ar; local
607 struct kaudit_record *ar; local
620 struct kaudit_record *ar; local
635 struct kaudit_record *ar; local
653 struct kaudit_record *ar; local
724 struct kaudit_record *ar; local
737 struct kaudit_record *ar; local
792 struct kaudit_record *ar; local
808 struct kaudit_record *ar; local
827 struct kaudit_record *ar; local
848 struct kaudit_record *ar; local
866 struct kaudit_record *ar; local
879 struct kaudit_record *ar; local
897 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); \
228 tok = au_to_attr32(&ar->ar_arg_vnode1); \
235 tok = au_to_attr32(&ar
319 audit_sys_auditon(struct audit_record *ar, struct au_record *rec) argument
466 struct audit_record *ar; local
[all...]
H A Daudit.c212 struct kaudit_record *ar; local
217 KASSERT(sizeof(*ar) == size, ("audit_record_ctor: wrong size"));
220 ar = mem;
221 bzero(ar, sizeof(*ar));
222 ar->k_ar.ar_magic = AUDIT_RECORD_MAGIC;
223 nanotime(&ar->k_ar.ar_starttime);
229 cru2x(cred, &ar->k_ar.ar_subj_cred);
230 ar->k_ar.ar_subj_ruid = cred->cr_ruid;
231 ar
255 struct kaudit_record *ar; local
370 struct kaudit_record *ar; local
395 audit_free(struct kaudit_record *ar) argument
402 audit_commit(struct kaudit_record *ar, int error, int retval) argument
666 struct kaudit_record *ar; local
[all...]
H A Daudit_worker.c296 audit_worker_process_record(struct kaudit_record *ar) argument
310 if (((ar->k_ar_commit & AR_COMMIT_USER) &&
311 (ar->k_ar_commit & AR_PRESELECT_USER_TRAIL)) ||
312 (ar->k_ar_commit & AR_PRESELECT_TRAIL)) {
322 if ((ar->k_ar_commit & AR_COMMIT_USER) &&
323 (ar->k_ar_commit & AR_PRESELECT_USER_TRAIL)) {
325 audit_record_write(audit_vp, audit_cred, ar->k_udata,
326 ar->k_ulen);
329 if ((ar->k_ar_commit & AR_COMMIT_USER) &&
330 (ar
391 struct kaudit_record *ar; local
[all...]
/freebsd-10.0-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-10.0-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-10.0-release/contrib/libarchive/libarchive/
H A Darchive_read_support_format_ar.c52 struct ar { struct
67 * Define structure of the "ar" header.
94 static int ar_parse_common_header(struct ar *ar, struct archive_entry *,
101 struct ar *ar; local
107 ar = (struct ar *)malloc(sizeof(*ar));
108 if (ar
137 struct ar *ar; local
167 _ar_read_header(struct archive_read *a, struct archive_entry *entry, struct ar *ar, const char *h, size_t *unconsumed) argument
412 struct ar *ar = (struct ar*)(a->format->data); local
445 ar_parse_common_header(struct ar *ar, struct archive_entry *entry, const char *h) argument
473 struct ar *ar; local
522 struct ar* ar; local
542 struct ar *ar; local
[all...]
H A Darchive_write_set_format_ar.c56 * Define structure of the "ar" header.
96 a->archive.archive_format_name = "ar (BSD)";
112 a->archive.archive_format_name = "ar (GNU/SVR4)";
123 struct ar_w *ar; local
129 ar = (struct ar_w *)malloc(sizeof(*ar));
130 if (ar == NULL) {
131 archive_set_error(&a->archive, ENOMEM, "Can't allocate ar data");
134 memset(ar, 0, sizeof(*ar));
152 struct ar_w *ar; local
364 struct ar_w *ar; local
399 struct ar_w *ar; local
419 struct ar_w *ar; local
439 struct ar_w *ar; local
[all...]
/freebsd-10.0-release/usr.bin/clang/llvm-ar/
H A DMakefile5 PROG_CXX=llvm-ar
7 SRCDIR= tools/llvm-ar
8 SRCS= llvm-ar.cpp
/freebsd-10.0-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-10.0-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-10.0-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
18 LINKS= ${BINDIR}/ar ${BINDIR}/ranlib
19 MLINKS= ar.1 ranlib.1
/freebsd-10.0-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-10.0-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-10.0-release/contrib/ipfilter/ipsend/
H A Darp.c73 struct arpreq ar; local
87 bzero((char *)&ar, sizeof(ar));
88 sin = (struct sockaddr_in *)&ar.arp_pa;
108 if (ioctl(sfd, SIOCGARP, (caddr_t)&ar) == -1)
129 if ((ar.arp_ha.sa_data[0] == 0) && (ar.arp_ha.sa_data[1] == 0) &&
130 (ar.arp_ha.sa_data[2] == 0) && (ar.arp_ha.sa_data[3] == 0) &&
131 (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-10.0-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-10.0-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-10.0-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-10.0-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);
/freebsd-10.0-release/crypto/heimdal/base/
H A Dheimbase.c126 heim_auto_release_t ar = p->autorelpool; local
128 if (ar) {
130 HEIMDAL_MUTEX_lock(&ar->pool_mutex);
131 HEIM_TAILQ_REMOVE(&ar->pool, p, autorel);
132 HEIMDAL_MUTEX_unlock(&ar->pool_mutex);
439 heim_auto_release_t ar = ptr; local
446 heim_auto_release_drain(ar);
448 if (!HEIM_TAILQ_EMPTY(&ar->pool))
456 tls->current = ar->parent;
491 heim_auto_release_t ar; local
518 heim_auto_release_t ar; local
[all...]

Completed in 150 milliseconds

1234567891011