Searched refs:opts (Results 1 - 19 of 19) sorted by relevance

/haiku/headers/private/userlandfs/fuse/
H A Dfuse_common_compat.h22 int fuse_mount_compat22(const char *mountpoint, const char *opts);
H A Dfuse_opt.h190 * A NULL 'opts' is equivalent to an 'opts' array containing a single
198 * @param opts is the option description array
203 const struct fuse_opt opts[], fuse_opt_proc_t proc);
208 * @param opts is a pointer to an option list, may point to a NULL value
212 int fuse_opt_add_opt(char **opts, const char *opt);
217 * @param opts is a pointer to an option list, may point to a NULL value
221 int fuse_opt_add_opt_escaped(char **opts, const char *opt);
260 * @param opts is the option description array
264 int fuse_opt_match(const struct fuse_opt opts[], cons
[all...]
H A Dfuse_compat.h108 struct fuse *fuse_new_compat22(int fd, const char *opts,
154 struct fuse *fuse_new_compat2(int fd, const char *opts,
H A Dfuse_lowlevel_compat.h138 struct fuse_session *fuse_lowlevel_new_compat(const char *opts,
/haiku/src/add-ons/kernel/file_systems/userlandfs/server/fuse/
H A Dfuse_opt.c25 char *opts; member in struct:fuse_opt_context
112 int fuse_opt_add_opt(char **opts, const char *opt) argument
115 if (!*opts)
118 unsigned oldlen = strlen(*opts);
119 newopts = realloc(*opts, oldlen + 1 + strlen(opt) + 1);
128 *opts = newopts;
134 return fuse_opt_add_opt(&ctx->opts, opt);
184 int fuse_opt_match(const struct fuse_opt *opts, const char *opt) argument
187 return find_opt(opts, opt, &dummy) ? 1 : 0;
275 static int process_real_option_group(struct fuse_opt_context *ctx, char *opts) argument
293 process_option_group(struct fuse_opt_context *ctx, const char *opts) argument
358 fuse_opt_parse(struct fuse_args *args, void *data, const struct fuse_opt opts[], fuse_opt_proc_t proc) argument
[all...]
/haiku/src/add-ons/kernel/file_systems/ntfs/utils/
H A Dmkntfs.c225 } opts; variable in typeref:struct:mkntfs_options
478 if (!opts.use_epoch_time)
513 if (opts.no_action)
602 if (opts.no_action)
2006 if (index_block_size < (u32)opts.sector_size) {
3165 vol->dev = ntfs_device_alloc(opts.dev_name, 0, &ntfs_device_default_io_ops, NULL);
3172 if (opts.no_action) {
3193 if (!opts.force) {
3197 if (!opts.num_sectors) {
3202 if (opts
[all...]
/haiku/src/add-ons/kernel/drivers/disk/nvme/libnvme/
H A Dnvme_ctrlr.c349 switch (ctrlr->opts.arb_mechanism) {
364 cc.bits.ams = ctrlr->opts.arb_mechanism;
496 num_queues = ((ctrlr->opts.io_queues - 1) << 16) |
497 (ctrlr->opts.io_queues - 1);
524 ctrlr->io_queues = nvme_min(ctrlr->io_queues, ctrlr->opts.io_queues);
763 ctrlr->opts.use_cmb_sqs = false;
769 ctrlr->opts.use_cmb_sqs = false;
1038 struct nvme_ctrlr_opts *opts)
1040 if (opts)
1041 memcpy(&ctrlr->opts, opt
1037 nvme_ctrlr_set_opts(struct nvme_ctrlr *ctrlr, struct nvme_ctrlr_opts *opts) argument
1059 nvme_ctrlr_attach(struct pci_device *pci_dev, struct nvme_ctrlr_opts *opts) argument
[all...]
H A Dnvme.c169 struct nvme_ctrlr_opts *opts)
172 struct nvme_ctrlr_opts *opts)
206 ctrlr = nvme_ctrlr_attach(pdev, opts);
168 nvme_ctrlr_open(struct pci_device *pdev, struct nvme_ctrlr_opts *opts) argument
H A Dnvme_internal.h584 struct nvme_ctrlr_opts opts; member in struct:nvme_ctrlr
683 struct nvme_ctrlr_opts *opts);
H A Dnvme.h520 * @param opts controller options
545 struct nvme_ctrlr_opts *opts);
H A Dnvme_qpair.c865 if (ctrlr->opts.use_cmb_sqs) {
/haiku/headers/private/firewire/
H A Dfwglue.h41 #define mtx_init(lockaddr, name, type, opts) mutex_init(lockaddr, name)
/haiku/src/libs/compat/freebsd_network/compat/sys/
H A Dmutex.h138 #define MTX_SYSINIT(name, mtx, desc, opts) \
142 (opts), \
/haiku/src/add-ons/kernel/bus_managers/acpi/acpica/include/
H A Dacapps.h259 char *opts);
/haiku/src/bin/pcmcia-cs/
H A Dcardctl.c663 char *s, *opts = (getuid() == 0) ? "Vc:f:s:" : "V"; local
673 while ((optch = getopt(argc, argv, opts)) != -1) {
/haiku/src/add-ons/translators/jpeg2000/
H A DJPEG2000Translator.cpp1051 char opts[16]; local
1052 sprintf(opts, "rate=%1f",
1057 (char*)"jpc" : (char*)"jp2"), opts)) {
/haiku/src/add-ons/kernel/drivers/network/wlan/iprowifi2100/dev/ipw/
H A Dif_ipw.c2103 struct ipw_scan_options opts; local
2106 opts.channels = htole32(chanmask);
2107 opts.flags = htole32(flags);
2108 return ipw_cmd(sc, IPW_CMD_SET_SCAN_OPTIONS, &opts, sizeof(opts));
/haiku/src/add-ons/kernel/drivers/network/ether/ipro100/dev/fxp/
H A Dif_fxp.c1807 uint16_t csum, *opts; local
1866 opts = (uint16_t *)(ip + 1);
1867 for (; len > 0; len -= sizeof(uint16_t), opts++) {
1868 temp32 = csum - *opts;
/haiku/src/add-ons/kernel/drivers/network/ether/marvell_yukon/dev/msk/
H A Dif_msk.c3108 uint16_t csum, *opts; local
3180 opts = (uint16_t *)(ip + 1);
3181 for (; len > 0; len -= sizeof(uint16_t), opts++) {
3182 temp32 = csum - *opts;

Completed in 120 milliseconds