Symbol: storage
crypto/libressl/crypto/ex_data.c
419
CRYPTO_EX_DATA_FUNCS **storage = NULL;
crypto/libressl/crypto/ex_data.c
429
storage = reallocarray(NULL, mx, sizeof(CRYPTO_EX_DATA_FUNCS*));
crypto/libressl/crypto/ex_data.c
430
if (!storage)
crypto/libressl/crypto/ex_data.c
433
storage[i] = sk_CRYPTO_EX_DATA_FUNCS_value(
crypto/libressl/crypto/ex_data.c
438
if ((mx > 0) && !storage) {
crypto/libressl/crypto/ex_data.c
443
if (storage[i] && storage[i]->new_func) {
crypto/libressl/crypto/ex_data.c
445
storage[i]->new_func(obj, ptr, ad, i,
crypto/libressl/crypto/ex_data.c
446
storage[i]->argl, storage[i]->argp);
crypto/libressl/crypto/ex_data.c
449
free(storage);
crypto/libressl/crypto/ex_data.c
459
CRYPTO_EX_DATA_FUNCS **storage = NULL;
crypto/libressl/crypto/ex_data.c
473
storage = reallocarray(NULL, mx, sizeof(CRYPTO_EX_DATA_FUNCS*));
crypto/libressl/crypto/ex_data.c
474
if (!storage)
crypto/libressl/crypto/ex_data.c
477
storage[i] = sk_CRYPTO_EX_DATA_FUNCS_value(
crypto/libressl/crypto/ex_data.c
482
if ((mx > 0) && !storage) {
crypto/libressl/crypto/ex_data.c
488
if (storage[i] && storage[i]->dup_func)
crypto/libressl/crypto/ex_data.c
489
storage[i]->dup_func(to, from, &ptr, i,
crypto/libressl/crypto/ex_data.c
490
storage[i]->argl, storage[i]->argp);
crypto/libressl/crypto/ex_data.c
493
free(storage);
crypto/libressl/crypto/ex_data.c
504
CRYPTO_EX_DATA_FUNCS **storage = NULL;
crypto/libressl/crypto/ex_data.c
511
storage = reallocarray(NULL, mx, sizeof(CRYPTO_EX_DATA_FUNCS*));
crypto/libressl/crypto/ex_data.c
512
if (!storage)
crypto/libressl/crypto/ex_data.c
515
storage[i] = sk_CRYPTO_EX_DATA_FUNCS_value(
crypto/libressl/crypto/ex_data.c
520
if ((mx > 0) && !storage) {
crypto/libressl/crypto/ex_data.c
525
if (storage[i] && storage[i]->free_func) {
crypto/libressl/crypto/ex_data.c
527
storage[i]->free_func(obj, ptr, ad, i,
crypto/libressl/crypto/ex_data.c
528
storage[i]->argl, storage[i]->argp);
crypto/libressl/crypto/ex_data.c
531
free(storage);
crypto/openssh/srclimit.c
87
struct sockaddr_storage storage;
crypto/openssh/srclimit.c
88
socklen_t addrlen = sizeof(storage);
crypto/openssh/srclimit.c
89
struct sockaddr *sa = (struct sockaddr *)&storage;
sbin/restore/interactive.c
702
uint8_t storage[ADIRENT_STORAGE_LEN];
sys/bus/cam/scsi/scsi_ses.c
1076
char storage[CFLEN], *sdata;
sys/bus/cam/scsi/scsi_ses.c
1120
cdp = (SesEncDesc *) storage;
sys/dev/disk/isp/isp_freebsd.c
2783
uint8_t storage[QENTRY_LEN];
sys/dev/disk/isp/isp_freebsd.c
2784
ct7_entry_t *cto = (ct7_entry_t *) storage;
sys/dev/disk/isp/isp_library.c
132
ISP_MEMZERO(storage, QENTRY_LEN);
sys/dev/disk/isp/isp_library.c
136
ispcontreq64_t *crq = (ispcontreq64_t *) storage;
sys/dev/disk/isp/isp_library.c
142
ispcontreq_t *crq = (ispcontreq_t *) storage;
sys/dev/disk/isp/isp_library.c
159
isp_put_cont64_req(isp, (ispcontreq64_t *)storage, qe1);
sys/dev/disk/isp/isp_library.c
161
isp_put_cont_req(isp, (ispcontreq_t *)storage, qe1);
sys/dev/disk/isp/isp_library.c
164
isp_print_bytes(isp, "additional queue entry", QENTRY_LEN, storage);
sys/dev/disk/isp/isp_library.c
1995
uint8_t storage[QENTRY_LEN], storage2[QENTRY_LEN];
sys/dev/disk/isp/isp_library.c
2146
ISP_MEMZERO(storage, QENTRY_LEN);
sys/dev/disk/isp/isp_library.c
2150
ispcontreq64_t *crq = (ispcontreq64_t *) storage;
sys/dev/disk/isp/isp_library.c
2156
ispcontreq_t *crq = (ispcontreq_t *) storage;
sys/dev/disk/isp/isp_library.c
2173
isp_put_cont64_req(isp, (ispcontreq64_t *)storage, qe1);
sys/dev/disk/isp/isp_library.c
2175
isp_put_cont_req(isp, (ispcontreq_t *)storage, qe1);
sys/dev/disk/isp/isp_library.c
2178
isp_print_bytes(isp, "additional queue entry", QENTRY_LEN, storage);
sys/dev/disk/isp/isp_library.c
46
uint8_t storage[QENTRY_LEN];
sys/dev/disk/isp/isp_target.c
1024
char storage[QENTRY_LEN];
sys/dev/disk/isp/isp_target.c
1041
ISP_MEMZERO(storage, QENTRY_LEN);
sys/dev/disk/isp/isp_target.c
1044
na_fcentry_24xx_t *na = (na_fcentry_24xx_t *) storage;
sys/dev/disk/isp/isp_target.c
1069
na_fcentry_t *na = (na_fcentry_t *) storage;
sys/dev/disk/isp/isp_target.c
1074
ISP_MEMCPY(storage, arg, sizeof (isphdr_t));
sys/dev/disk/isp/isp_target.c
1106
na_entry_t *na = (na_entry_t *) storage;
sys/dev/disk/isp/isp_target.c
1109
ISP_MEMCPY(storage, arg, sizeof (isphdr_t));
sys/dev/disk/isp/isp_target.c
1125
ISP_TDQE(isp, "isp_notify_ack", isp->isp_reqidx, storage);
sys/dev/disk/isp/isp_target.c
1133
char storage[QENTRY_LEN];
sys/dev/disk/isp/isp_target.c
1137
abts_rsp_t *rsp = (abts_rsp_t *) storage;
sys/dev/disk/isp/isp_target.c
1204
ISP_TDQE(isp, "isp_acknak_abts", isp->isp_reqidx, storage);
sys/dev/disk/isp/isp_target.c
797
uint8_t storage[QENTRY_LEN];
sys/dev/disk/isp/isp_target.c
799
memset(storage, 0, QENTRY_LEN);
sys/dev/disk/isp/isp_target.c
801
ct7_entry_t *ct = (ct7_entry_t *) storage;
sys/dev/disk/isp/isp_target.c
808
ct2_entry_t *ct = (ct2_entry_t *) storage;
sys/dev/disk/isp/isp_target.c
814
ct_entry_t *ct = (ct_entry_t *) storage;
sys/dev/disk/isp/isp_target.c
822
isp_async(isp, ISPASYNC_TARGET_ACTION, storage);
usr.bin/indent/indent.c
940
case storage:
usr.bin/indent/lexi.c
307
return (storage);
usr.bin/m4/look.c
70
void *storage = xalloc(s, "hash alloc");
usr.bin/m4/look.c
71
if (storage)
usr.bin/m4/look.c
72
memset(storage, 0, s);
usr.bin/m4/look.c
73
return storage;
usr.bin/rpcgen/rpc_svcout.c
289
write_programs(const char *storage)
usr.bin/rpcgen/rpc_svcout.c
305
write_program(def, storage);
usr.bin/rpcgen/rpc_svcout.c
369
write_program(definition *def, const char *storage)
usr.bin/rpcgen/rpc_svcout.c
377
if (storage != NULL)
usr.bin/rpcgen/rpc_svcout.c
378
f_print(fout, "%s ", storage);
usr.sbin/installer/dfuibe_installer/fn_subpart_hammer.c
309
default_capacity(struct storage *s, const char *mtpt)
usr.sbin/installer/dfuibe_installer/fn_subpart_hammer.c
72
static long default_capacity(struct storage *, const char *);
usr.sbin/installer/dfuibe_installer/fn_subpart_ufs.c
267
default_capacity(struct storage *s, const char *mtpt)
usr.sbin/installer/dfuibe_installer/fn_subpart_ufs.c
76
static long default_capacity(struct storage *, const char *);
usr.sbin/installer/libinstaller/diskutil.c
101
storage_free(struct storage *s)
usr.sbin/installer/libinstaller/diskutil.c
104
AURA_FREE(s, storage);
usr.sbin/installer/libinstaller/diskutil.c
108
storage_set_memsize(struct storage *s, unsigned long memsize)
usr.sbin/installer/libinstaller/diskutil.c
114
storage_get_memsize(const struct storage *s)
usr.sbin/installer/libinstaller/diskutil.c
120
storage_disk_first(const struct storage *s)
usr.sbin/installer/libinstaller/diskutil.c
126
storage_set_selected_disk(struct storage *s, struct disk *d)
usr.sbin/installer/libinstaller/diskutil.c
132
storage_get_selected_disk(const struct storage *s)
usr.sbin/installer/libinstaller/diskutil.c
138
storage_set_selected_slice(struct storage *s, struct slice *sl)
usr.sbin/installer/libinstaller/diskutil.c
144
storage_get_selected_slice(const struct storage *s)
usr.sbin/installer/libinstaller/diskutil.c
153
disk_new(struct storage *s, const char *dev_name)
usr.sbin/installer/libinstaller/diskutil.c
276
disk_find(const struct storage *s, const char *device)
usr.sbin/installer/libinstaller/diskutil.c
334
disks_free(struct storage *s)
usr.sbin/installer/libinstaller/diskutil.c
66
struct storage *
usr.sbin/installer/libinstaller/diskutil.c
69
struct storage *s;
usr.sbin/installer/libinstaller/diskutil.c
71
AURA_MALLOC(s, storage);
usr.sbin/installer/libinstaller/diskutil.c
83
storage_get_tmpfs_status(const char *mountpoint, struct storage *s)
usr.sbin/installer/libinstaller/diskutil.h
119
struct storage *storage_new(void);
usr.sbin/installer/libinstaller/diskutil.h
120
void storage_free(struct storage *);
usr.sbin/installer/libinstaller/diskutil.h
121
void storage_set_memsize(struct storage *, unsigned long);
usr.sbin/installer/libinstaller/diskutil.h
122
long storage_get_memsize(const struct storage *);
usr.sbin/installer/libinstaller/diskutil.h
123
struct disk *storage_disk_first(const struct storage *);
usr.sbin/installer/libinstaller/diskutil.h
124
void storage_set_selected_disk(struct storage *, struct disk *);
usr.sbin/installer/libinstaller/diskutil.h
125
struct disk *storage_get_selected_disk(const struct storage *);
usr.sbin/installer/libinstaller/diskutil.h
126
void storage_set_selected_slice(struct storage *, struct slice *);
usr.sbin/installer/libinstaller/diskutil.h
127
struct slice *storage_get_selected_slice(const struct storage *);
usr.sbin/installer/libinstaller/diskutil.h
128
int storage_get_tmpfs_status(const char *, struct storage *);
usr.sbin/installer/libinstaller/diskutil.h
130
struct disk *disk_new(struct storage *, const char *);
usr.sbin/installer/libinstaller/diskutil.h
131
struct disk *disk_find(const struct storage *, const char *);
usr.sbin/installer/libinstaller/diskutil.h
133
void disks_free(struct storage *);
usr.sbin/installer/libinstaller/diskutil.h
48
struct storage;
usr.sbin/installer/libinstaller/functions.h
49
struct storage;
usr.sbin/installer/libinstaller/functions.h
62
struct storage *s; /* description of system storage */