Symbol: create
crypto/libressl/apps/openssl/apps.c
1189
load_serial(char *serialfile, int create, ASN1_INTEGER **retai)
crypto/libressl/apps/openssl/apps.c
1205
if (!create) {
crypto/libressl/apps/openssl/apps.h
226
BIGNUM *load_serial(char *serialfile, int create, ASN1_INTEGER **retai);
crypto/libressl/apps/openssl/x509.c
1339
x509_load_serial(char *CAfile, char *serialfile, int create)
crypto/libressl/apps/openssl/x509.c
1364
serial = load_serial(buf, create, NULL);
crypto/libressl/apps/openssl/x509.c
1385
char *serialfile, int create, int days, int clrext, CONF *conf,
crypto/libressl/apps/openssl/x509.c
1406
else if ((bs = x509_load_serial(CAfile, serialfile, create)) == NULL)
crypto/libressl/apps/openssl/x509.c
87
char *serial, int create, int days, int clrext, CONF *conf, char *section,
crypto/libressl/crypto/asn1/bio_asn1.c
137
.create = asn1_bio_new,
crypto/libressl/crypto/bio/bf_buff.c
86
.create = buffer_new,
crypto/libressl/crypto/bio/bf_nbio.c
93
.create = nbiof_new,
crypto/libressl/crypto/bio/bio_lib.c
170
if (method->create != NULL) {
crypto/libressl/crypto/bio/bio_lib.c
171
if (!method->create(bio)) {
crypto/libressl/crypto/bio/bio_local.h
72
int (*create)(BIO *);
crypto/libressl/crypto/bio/bio_meth.c
112
return biom->create;
crypto/libressl/crypto/bio/bio_meth.c
116
BIO_meth_set_create(BIO_METHOD *biom, int (*create)(BIO *))
crypto/libressl/crypto/bio/bio_meth.c
118
biom->create = create;
crypto/libressl/crypto/bio/bss_acpt.c
112
.create = acpt_new,
crypto/libressl/crypto/bio/bss_conn.c
118
.create = conn_new,
crypto/libressl/crypto/bio/bss_dgram.c
98
.create = dgram_new,
crypto/libressl/crypto/bio/bss_fd.c
87
.create = fd_new,
crypto/libressl/crypto/bio/bss_file.c
111
.create = file_new,
crypto/libressl/crypto/bio/bss_mem.c
106
.create = mem_new,
crypto/libressl/crypto/bio/bss_null.c
83
.create = null_new,
crypto/libressl/crypto/bio/bss_sock.c
85
.create = sock_new,
crypto/libressl/crypto/conf/conf_def.c
96
.create = def_create,
crypto/libressl/crypto/conf/conf_lib.c
230
ret = meth->create(meth);
crypto/libressl/crypto/engine/eng_lib.c
154
int_cleanup_check(int create)
crypto/libressl/crypto/engine/eng_lib.c
158
if (!create)
crypto/libressl/crypto/engine/eng_table.c
118
int_table_check(ENGINE_TABLE **t, int create)
crypto/libressl/crypto/engine/eng_table.c
124
if (!create)
crypto/libressl/crypto/err/err.c
228
LHASH_OF(ERR_STRING_DATA) *(*cb_err_get)(int create);
crypto/libressl/crypto/err/err.c
234
LHASH_OF(ERR_STATE) *(*cb_thread_get)(int create);
crypto/libressl/crypto/err/err.c
244
static LHASH_OF(ERR_STRING_DATA) *int_err_get(int create);
crypto/libressl/crypto/err/err.c
249
static LHASH_OF(ERR_STATE) *int_thread_get(int create);
crypto/libressl/crypto/err/err.c
355
LHASH_OF(ERR_STRING_DATA) *int_err_get(int create)
crypto/libressl/crypto/err/err.c
360
if (!int_error_hash && create) {
crypto/libressl/crypto/err/err.c
452
LHASH_OF(ERR_STATE) *int_thread_get(int create)
crypto/libressl/crypto/err/err.c
457
if (!int_thread_hash && create) {
crypto/libressl/crypto/evp/bio_b64.c
104
.create = b64_new,
crypto/libressl/crypto/evp/bio_enc.c
99
.create = enc_new,
crypto/libressl/crypto/evp/bio_md.c
87
.create = md_new,
crypto/libressl/include/openssl/bio.h
305
int BIO_meth_set_create(BIO_METHOD *biom, int (*create)(BIO *));
crypto/libressl/include/openssl/conf.h
90
CONF *(*create)(CONF_METHOD *meth);
crypto/libressl/ssl/bio_ssl.c
96
.create = ssl_new,
lib/libalias/alias_db.c
1425
int create)
lib/libalias/alias_db.c
1432
if (link == NULL && create && !(packetAliasMode & PKT_ALIAS_DENY_INCOMING))
lib/libalias/alias_db.c
1450
int create)
lib/libalias/alias_db.c
1457
if (link == NULL && create)
lib/libalias/alias_db.c
1580
int create)
lib/libalias/alias_db.c
1600
link_type, create);
lib/libalias/alias_db.c
1602
if (link == NULL && create && !(packetAliasMode & PKT_ALIAS_DENY_INCOMING))
lib/libalias/alias_db.c
1622
int create)
lib/libalias/alias_db.c
1640
link = FindLinkOut(src_addr, dst_addr, src_port, dst_port, link_type, create);
lib/libalias/alias_db.c
1642
if (link == NULL && create)
lib/libthread_xu/thread/thr_sem.c
516
int error, fd, create;
lib/libthread_xu/thread/thr_sem.c
524
create = 0;
lib/libthread_xu/thread/thr_sem.c
628
create = 1;
lib/libthread_xu/thread/thr_sem.c
656
if (create)
lib/libthread_xu/thread/thr_sem.c
663
if (create) {
sbin/gpt/create.c
265
create(fd);
sbin/gpt/create.c
355
create(fd);
sbin/vinum/v.c
264
FUNKEY(create),
sbin/vinum/vinumparser.c
112
keypair(create),
sys/dev/drm/i915/i915_gem_gtt.c
1308
static int gen8_ppgtt_notify_vgt(struct i915_hw_ppgtt *ppgtt, bool create)
sys/dev/drm/i915/i915_gem_gtt.c
1321
msg = (create ? VGT_G2V_PPGTT_L4_PAGE_TABLE_CREATE :
sys/dev/drm/i915/i915_gem_gtt.c
1331
msg = (create ? VGT_G2V_PPGTT_L3_PAGE_TABLE_CREATE :
sys/dev/raid/vinum/vinumconfig.c
481
find_drive(const char *name, int create)
sys/dev/raid/vinum/vinumconfig.c
496
if (create == 0) /* don't want to create */
sys/dev/raid/vinum/vinumconfig.c
513
find_drive_by_dev(const char *devname, int create)
sys/dev/raid/vinum/vinumconfig.c
527
if (create == 0)
sys/dev/raid/vinum/vinumconfig.c
596
find_subdisk(const char *name, int create)
sys/dev/raid/vinum/vinumconfig.c
607
if (create == 0) /* don't want to create */
sys/dev/raid/vinum/vinumconfig.c
833
find_plex(const char *name, int create)
sys/dev/raid/vinum/vinumconfig.c
844
if (create == 0) /* don't want to create */
sys/dev/raid/vinum/vinumconfig.c
908
find_volume(const char *name, int create)
sys/dev/raid/vinum/vinumconfig.c
919
if (create == 0) /* don't want to create */
sys/dev/raid/vinum/vinumext.h
82
int find_drive(const char *name, int create);
sys/dev/raid/vinum/vinumext.h
83
int find_drive_by_dev(const char *devname, int create);
sys/dev/raid/vinum/vinumext.h
85
int find_subdisk(const char *name, int create);
sys/dev/raid/vinum/vinumext.h
90
int find_plex(const char *name, int create);
sys/dev/raid/vinum/vinumext.h
93
int find_volume(const char *name, int create);
sys/dev/raid/vinum/vinumparser.c
119
keypair(create),
sys/dev/sound/pci/envy24.c
2442
sc->adc[i] = sc->cfg->codec->create(sc->dev, sc, PCMDIR_REC, i);
sys/dev/sound/pci/envy24.c
2446
sc->dac[i] = sc->cfg->codec->create(sc->dev, sc, PCMDIR_PLAY, i);
sys/dev/sound/pci/envy24.c
97
void *(*create)(device_t dev, void *devinfo, int dir, int num);
sys/dev/sound/pci/envy24ht.c
106
void *(*create)(device_t dev, void *devinfo, int dir, int num);
sys/dev/sound/pci/envy24ht.c
2358
sc->adc[i] = sc->cfg->codec->create(sc->dev, sc, PCMDIR_REC, i);
sys/dev/sound/pci/envy24ht.c
2362
sc->dac[i] = sc->cfg->codec->create(sc->dev, sc, PCMDIR_PLAY, i);
sys/kern/subr_bus.c
740
int create)
sys/kern/subr_bus.c
752
if (create && !dc) {
sys/net/if_clone.h
71
#define IF_CLONE_INITIALIZER(name, create, destroy, minifs, maxunit) \
sys/net/if_clone.h
72
{ { 0 }, name, minifs, maxunit, NULL, 0, create, destroy }
sys/net/netmap/netmap.c
1050
netmap_get_na(struct nmreq *nmr, struct netmap_adapter **na, int create)
sys/net/netmap/netmap.c
1061
error = netmap_get_bdg_na(nmr, na, create);
sys/net/netmap/netmap_kern.h
636
int netmap_get_na(struct nmreq *nmr, struct netmap_adapter **na, int create);
sys/net/netmap/netmap_kern.h
660
int netmap_get_bdg_na(struct nmreq *nmr, struct netmap_adapter **na, int create);
sys/net/netmap/netmap_vale.c
312
nm_find_bridge(const char *name, int create)
sys/net/netmap/netmap_vale.c
340
if (create && b == NULL)
sys/net/netmap/netmap_vale.c
506
netmap_get_bdg_na(struct nmreq *nmr, struct netmap_adapter **na, int create)
sys/net/netmap/netmap_vale.c
525
b = nm_find_bridge(name, create);
sys/net/netmap/netmap_vale.c
554
if (!create)
sys/net/route.c
385
goto create;
sys/net/route.c
388
goto create;
sys/net/route.c
403
create:
sys/netinet/if_ether.c
1303
arplookup(in_addr_t addr, boolean_t create,
sys/netinet/if_ether.c
1316
if (create) {
sys/netinet/if_ether.c
1333
if (create && log_arp_creation_failure) {
sys/netinet/if_ether.c
707
arp_update_oncpu(struct mbuf *m, in_addr_t saddr, boolean_t create,
sys/netinet/if_ether.c
717
int changed = create;
sys/netinet/if_ether.c
722
la = arplookup(saddr, create, FALSE);
sys/netinet6/nd6.c
860
nd6_lookup(struct in6_addr *addr6, int create, struct ifnet *ifp)
sys/netinet6/nd6.c
870
if (create)
sys/netinet6/nd6.c
881
if (create) {
sys/netinet6/nd6.c
887
if (create && ifp) {
sys/netinet6/nd6.c
932
if (create) {
sys/vfs/devfs/devfs_core.c
1963
size_t name_len, int create)
sys/vfs/devfs/devfs_core.c
1977
if ((found == NULL) && (create)) {
sys/vfs/devfs/devfs_core.c
1990
devfs_resolve_or_create_path(struct devfs_node *parent, char *path, int create)
sys/vfs/devfs/devfs_core.c
2006
node = devfs_resolve_or_create_dir(node, buf, idx, create);
sys/vfs/devfs/devfs_core.c
2016
node = devfs_resolve_or_create_dir(node, buf, idx, create);
usr.bin/find/find.c
116
new = (p->create)(p, &argv1);
usr.bin/find/find.c
120
new = (p->create)(p, &argv1);
usr.bin/find/find.c
124
new = (p->create)(p, &argv1);
usr.bin/find/find.c
128
new = (p->create)(p, &argv1);
usr.bin/find/find.h
141
creat_f *create; /* create function */
usr.bin/find/option.c
161
new = (p->create)(p, &argv);
usr.bin/localedef/collate.c
559
get_collchar(wchar_t wc, int create)
usr.bin/localedef/collate.c
567
if ((cc == NULL) && create) {
usr.sbin/efibootmgr/efibootmgr.c
1072
if (opts.create)
usr.sbin/efibootmgr/efibootmgr.c
222
opts.create = true;
usr.sbin/efibootmgr/efibootmgr.c
288
if (opts.create) {
usr.sbin/efibootmgr/efibootmgr.c
76
bool create;
usr.sbin/mfiutil/mfi_config.c
818
MFI_COMMAND(top, create, create_volume);
usr.sbin/mptutil/mpt_config.c
1047
MPT_COMMAND(pd, create, pd_create);
usr.sbin/mptutil/mpt_config.c
728
MPT_COMMAND(top, create, create_volume);
usr.sbin/mtree/verify.c
163
int create;
usr.sbin/mtree/verify.c
203
create = 0;
usr.sbin/mtree/verify.c
233
create = 1;
usr.sbin/mtree/verify.c
245
create = 1;
usr.sbin/mtree/verify.c
252
create = 1;
usr.sbin/mtree/verify.c
259
if (create)
usr.sbin/mtree/verify.c
272
if (!create || mtree_Wflag)
usr.sbin/ppp/physical.c
1023
if ((p->handler = (*devices[h].create)(p)) == NULL && wasfd != p->fd)
usr.sbin/ppp/physical.c
113
struct device *(*create)(struct physical *);
usr.sbin/ppp/physical.c
999
p->handler = (*devices[h].create)(p);
usr.sbin/rpc.statd/file.c
75
find_host(char *hostname, int create)
usr.sbin/rpc.statd/file.c
94
if (result || !create) return (result);
usr.sbin/sdpd/profile.c
90
for (; ad->create != NULL; ad ++)
usr.sbin/sdpd/profile.c
92
return (ad->create);
usr.sbin/sdpd/profile.h
54
profile_attr_create_p create; /* create attr value */
usr.sbin/sensorsd/sensorsd.c
135
create();
usr.sbin/sensorsd/sensorsd.c
78
static void create(void);