HomeSort by relevance Sort by last modified time
    Searched refs:as (Results 1 - 25 of 1282) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /pkg/on_ips/usr/src/uts/common/vm/
as.h 64 * The segment list is represented as an AVL tree.
69 * address space structure as shown below:
103 struct as { struct
105 uchar_t a_flags; /* as attributes */
110 caddr_t a_userlimit; /* highest allowable address in this as */
136 #define AS_ISPGLCK(as) ((as)->a_flags & AS_PAGLCK)
137 #define AS_ISCLAIMGAP(as) ((as)->a_flags & AS_CLAIMGAP)
138 #define AS_ISUNMAPWAIT(as) ((as)->a_flags & AS_UNMAPWAIT
    [all...]
rm.h 48 extern size_t rm_asrss(struct as *);
49 extern ushort_t rm_pctmemory(struct as *);
vm_as.c 62 #include <vm/as.h>
75 static void as_setwatchprot(struct as *, caddr_t, size_t, uint_t);
76 static void as_clearwatchprot(struct as *, caddr_t, size_t);
77 int as_map_locked(struct as *, caddr_t, size_t, int ((*)()), void *);
92 * Link the entry on the as->a_callbacks list. A callback entry for the
96 * the specified as, the caller must guarantee persistence of the specified as
97 * for the duration of this function (eg. pages being locked within the as
101 as_add_callback(struct as *as, void (*cb_func)(), void *arg, uint_t events
614 struct as *as = buf; local
627 struct as *as = buf; local
650 struct as *as; local
    [all...]
vm_rm.c 53 #include <vm/as.h>
62 * This is currently implemented as the number of active hardware
71 rm_asrss(as)
72 register struct as *as;
74 if (as != (struct as *)NULL && as != &kas)
75 return ((size_t)btop(hat_get_mapped_size(as->a_hat)));
83 * Defined as the ratio of a_rss for the process to total physical memory
    [all...]
xhat.c 36 #include <vm/as.h>
136 xhat_attach_xhat(xhat_provider_t *provider, struct as *as,
156 mutex_enter(&as->a_contents);
159 if (AS_ISBUSY(as)) {
160 mutex_exit(&as->a_contents);
171 xh->xhat_as = as;
175 xh->next = (struct xhat *)as->a_xhat;
178 as->a_xhat = xh;
179 mutex_exit(&as->a_contents)
    [all...]
hat_refmod.c 42 #include <vm/as.h>
63 #define hrm_hash(as, addr) \
65 (((uintptr_t)(addr) >> HRM_BASESHIFT) ^ ((uintptr_t)(as) >> 2)))
67 #define hrm_match(hrm, as, addr) \
68 (((hrm)->hrm_as == (as) && \
77 hat_resvstat(size_t chunk, struct as *as, caddr_t addr)
89 hat_startstat(struct as *as)
113 chunk = hat_get_mapped_size(as->a_hat)
371 struct as *as = hrm->hrm_as; local
    [all...]
  /pkg/on_ips/usr/src/uts/common/io/1394/targets/av1394/
av1394_as.c 35 av1394_as_init(av1394_as_t *as)
37 as->as_end = 0;
41 av1394_as_fini(av1394_as_t *as)
43 as->as_end = 0;
50 av1394_as_alloc(av1394_as_t *as, size_t size)
54 addr = as->as_end;
55 as->as_end += size;
61 av1394_as_free(av1394_as_t *as, off_t addr)
  /pkg/on_ips/usr/src/lib/libbc/libc/gen/common/
mktemp.c 50 mktemp(as)
51 char *as;
53 register char *s=as;
59 s += strlen(as); /* point at the terminal null */
66 while (stat(as, &buf) == 0) {
68 *as = '\0';
73 if (stat(as, &buf) == 0)
74 *as = '\0';
75 return(as);
mkstemp.c 12 mkstemp(char *as)
19 s = as;
29 while ((fd = open(as, O_CREAT|O_EXCL|O_RDWR, 0600)) == -1) {
  /pkg/on_ips/usr/src/lib/libast/common/hash/
strhash.c 37 strhash(const char* as)
39 register const unsigned char* s = (const unsigned char*)as;
memhash.c 37 memhash(const void* as, int n)
39 register const unsigned char* s = (const unsigned char*)as;
strsum.c 42 strsum(const char* as, register unsigned long c)
44 register const unsigned char* s = (const unsigned char*)as;
  /pkg/on_ips/usr/src/lib/crypt_modules/bsdbf/
arc4random.c 23 * which is a trade secret). The same algorithm is used as a stream
57 arc4_init(as)
58 struct arc4_stream *as;
63 as->s[n] = n;
64 as->i = 0;
65 as->j = 0;
69 arc4_addrandom(as, dat, datlen)
70 struct arc4_stream *as;
77 as->i--;
79 as->i = (as->i + 1)
    [all...]
  /pkg/on_ips/usr/src/lib/libc/port/gen/
mkstemp.c 62 libc_mkstemps(char *as, int slen)
68 if (as == NULL || *as == NULL)
71 len = (int)strlen(as);
73 (void) strcpy(tstr, as);
88 mkret = libc_mktemps(as, slen);
94 if ((fd = open64(as, O_CREAT|O_EXCL|O_RDWR, 0600)) != -1) {
98 if ((fd = open(as, O_CREAT|O_EXCL|O_RDWR, 0600)) != -1) {
112 (void) strcpy(as, tstr);
117 mkstemp(char *as)
    [all...]
mktemp.c 124 libc_mktemps(char *as, int slen)
143 if (as == NULL || *as == '\0') /* If the string passed is null then */
144 return (as); /* a pointer to a null string is returned. */
169 len = (int)strlen(as);
173 s = as + (len - 1);
192 s = as + len;
193 for (xcnt = previous_xcnt; xcnt && s > as; xcnt--) {
209 lstat64(as, &buf) == -1 && errno == ENOENT) {
211 return (as);
    [all...]
  /pkg/on_ips/usr/src/cmd/acct/lib/
substr.c 28 Place the `len' length substring of `as' starting at `as[origin]'
32 Note: The copying of as to aresult stops if either the
34 or if the end of as is found.
38 char *substr(as, aresult, origin, len)
39 char *as, *aresult;
45 s = as + origin;
  /pkg/on_ips/usr/src/lib/libast/common/string/
fmtesc.c 35 * quote string as of length n with qb...qe
44 fmtquote(const char* as, const char* qb, const char* qe, size_t n, int flags)
46 register unsigned char* s = (unsigned char*)as;
210 * in length n string as
214 fmtnesq(const char* as, const char* qs, size_t n)
216 return fmtquote(as, NiL, qs, n, 0);
224 fmtesq(const char* as, const char* qs)
226 return fmtquote(as, NiL, qs, strlen((char*)as), 0);
234 fmtesc(const char* as)
    [all...]
  /pkg/on_ips/usr/src/cmd/ssh/sshd/
auth-bsdauth.c 13 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
47 if (authctxt->as != NULL) {
49 challenge = auth_getitem(authctxt->as, AUTHV_CHALLENGE);
51 auth_close(authctxt->as);
52 authctxt->as = NULL;
60 authctxt->as = auth_userchallenge(authctxt->user,
62 if (authctxt->as == NULL)
87 if (authctxt->as == 0)
93 authok = auth_userresponse(authctxt->as, responses[0], 0);
94 authctxt->as = NULL
    [all...]
  /pkg/on_ips/usr/src/cmd/mdb/common/mdb/
mdb_kb.h 47 struct as;
60 ssize_t (*kb_aread)(void *, uintptr_t, void *, size_t, struct as *);
62 size_t, struct as *);
66 uint64_t (*kb_vtop)(void *, struct as *, uintptr_t);
  /pkg/on_ips/usr/src/cmd/sgs/libelf/common/
getarsym.c 98 register Elf_Arsym *as = (Elf_Arsym *)oas; local
106 as->as_off = get4(off);
107 as->as_name = str;
108 as->as_hash = elf_hash(str);
109 ++as;
115 as->as_name = 0;
116 as->as_off = 0;
117 as->as_hash = ~(unsigned long)0L;
126 Byte *as; local
140 if ((as = (Byte *)elf->ed_arsym) == 0)
    [all...]
  /pkg/on_ips/usr/src/cmd/sh/
string.c 90 int length(as)
91 unsigned char *as;
95 if (s = as)
97 return(s - as);
  /pkg/on_ips/usr/src/cmd/syslogd/
README 27 Note: These sources should be kept as backwards portable as possible on
  /pkg/on_ips/usr/src/cmd/lp/terminfo/
58x.ti 43 583ibm|att583ibm|AT&T 583 as IBM Proprinter XL,
51 583ibm-80|att583ibm-80|AT&T 583 as IBM Proprinter XL;80-col,
56 583eps|att583eps|AT&T 583 as Epson LQ-2500; low resolution,
60 583eps-hi|att583eps-hi|AT&T 583 as Epson LQ-2500; high resolution,
64 583eps-80|att583eps-80|AT&T 583 as Epson LQ-2500; low resolution; 80-col,
69 583eps-hi-80|att583eps-hi-80|AT&T 583 as Epson LQ-2500; high resolution; 80-col,
75 580ibm|att580ibm|AT&T 580 as IBM Proprinter XL,
79 581ibm|att581ibm|AT&T 581 as IBM Proprinter XL,
87 581eps|att581eps|AT&T 581 as Epson LQ-2500; low resolution,
91 581eps-hi|att581eps-hi|AT&T 581 as Epson LQ-2500; high resolution
    [all...]
  /pkg/on_ips/usr/src/uts/common/os/
urw.c 52 #include <vm/as.h>
128 * Map address "addr" in address space "as" into a kernel virtual address.
132 mapin(struct as *as, caddr_t addr, int writing)
145 pfnum = hat_getpfnum(as->a_hat, addr);
172 mapout(struct as *as, caddr_t addr, caddr_t vaddr, int writing)
197 struct as *as = p->p_as; local
205 AS_LOCK_ENTER(as, &as->a_lock, RW_WRITER)
    [all...]
  /pkg/on_ips/usr/src/lib/libbsm/
audit_event.txt 44 # 0 Reserved as an invalid event number.
79 12:AUE_UMOUNT:umount(2) - old version:as
85 18:AUE_ACCT:acct(2):as
117 50:AUE_ADJTIME:adjtime(2):as
129 62:AUE_MOUNT:mount(2):as
199 142:AUE_AUDITON_SPOLICY:auditon(2) - set audit policy flags:as
202 145:AUE_AUDITON_GQCTRL:auditon(2) - get queue control parameters:as
203 146:AUE_AUDITON_SQCTRL:auditon(2) - set queue control parameters:as
238 201:AUE_STIME:old stime(2):as
262 222:AUE_AUDITON_SETKMASK:auditon(2) - set kernel mask:as
    [all...]

Completed in 2269 milliseconds

1 2 3 4 5 6 7 8 91011>>