| /src/external/bsd/ipf/dist/tools/ |
| ippool.c | 153 char *poolname = NULL; local 175 poolname = optarg; 237 if (poolname == NULL) { 238 fprintf(stderr, "poolname not given with add/remove node\n"); 245 err = load_poolnode(role, poolname, &pnode, ttl, ioctl); 247 err = remove_poolnode(role, poolname, &pnode, ioctl); 251 err = load_hashnode(role, poolname, &hnode, ttl, ioctl); 253 err = remove_hashnode(role, poolname, &hnode, ioctl); 268 char *poolname; local 275 poolname = NULL 650 char *kernel, *core, *poolname; local [all...] |
| ippool_y.y | 54 static char poolname[FR_GROUPLEN]; 226 number: IPT_NUM '=' YY_NUMBER { sprintf(poolname, "%u", $3); 227 $$ = poolname; 229 | IPT_NAME '=' YY_STR { strncpy(poolname, $3, 231 poolname[FR_GROUPLEN-1]='\0'; 233 $$ = poolname;
|
| /src/external/cddl/osnet/dist/cmd/zinject/ |
| zinject.h | 58 int level, zinject_record_t *record, char *poolname, char *dataset);
|
| translate.c | 316 int level, zinject_record_t *record, char *poolname, char *dataset) 358 (void) strcpy(poolname, object); 398 (void) strcpy(poolname, dataset); 399 if ((slash = strchr(poolname, '/')) != NULL)
|
| /src/external/cddl/osnet/dist/lib/libzfs/common/ |
| libzfs_config.c | 352 zpool_skip_pool(const char *poolname) 360 int namelen = strlen(poolname); 373 if (len == namelen && 0 == strncmp(cur, poolname, len)) 387 if (len == namelen && 0 == strncmp(cur, poolname, len)) {
|
| libzfs_import.c | 1199 * poolname or guid (but not both) are provided by the caller when trying 1391 if (iarg->poolname != NULL) { 1397 strcmp(iarg->poolname, pname) == 0; 1469 * poolname or guid (but not both) are provided by the caller when trying 1474 char *poolname, uint64_t guid) 1486 verify(poolname == NULL || guid == 0); 1544 if (poolname != NULL && strcmp(poolname, name) != 0) 1586 if (import->poolname != NULL) { 1591 if (strcmp(pool_name, import->poolname) == 0 [all...] |
| libzfs_pool.c | 424 zpool_valid_proplist(libzfs_handle_t *hdl, const char *poolname, 539 if (strval[0] != '\0' && !bootfs_name_valid(poolname, 547 if ((zhp = zpool_open_canfail(hdl, poolname)) == NULL) { 549 "could not open pool '%s'"), poolname); 4067 char poolname[ZFS_MAX_DATASET_NAME_LEN]; local 4096 (void) strncpy(poolname, volname, p - volname); 4097 poolname[p - volname] = '\0'; 4100 if ((zhp = zpool_open(hdl, poolname)) == NULL) { 4102 "could not open pool '%s'"), poolname); 4110 "could not obtain vdev configuration for '%s'"), poolname); [all...] |
| libzfs.h | 369 char *poolname; /* name of a pool to find */ member in struct:importargs 373 int unique : 1; /* does 'poolname' already exist? */
|
| /src/external/cddl/osnet/dist/cmd/zpool/ |
| zpool_main.c | 500 char *poolname; local 534 poolname = argv[0]; 539 if ((zhp = zpool_open(g_zfs, poolname)) == NULL) 544 poolname); 567 print_vdev_tree(zhp, poolname, poolnvroot, 0, B_FALSE); 598 char *poolname; local 615 poolname = argv[0]; 617 if ((zhp = zpool_open(g_zfs, poolname)) == NULL) 804 char *poolname; local 916 poolname = argv[0] 3209 char *poolname, *old_disk, *new_disk; local 3335 char *poolname, *path; local 3523 char *poolname; local 3601 char *poolname; local 3740 char *poolname; local 4554 static char *poolname = NULL; local [all...] |
| /src/external/cddl/osnet/dist/uts/common/fs/zfs/ |
| zfs_ioctl.c | 3419 zfs_ioc_snapshot(const char *poolname, nvlist_t *innvl, nvlist_t *outnvl) 3427 if ((error = zfs_check_userprops(poolname, props)) != 0) 3431 zfs_earlier_version(poolname, SPA_VERSION_SNAP_PROPS)) 3436 poollen = strlen(poolname); 3453 if (strncmp(name, poolname, poollen) != 0 || 3481 char *poolname; local 3484 * The poolname in the ioctl is not set, we get it from the TSD, 3490 poolname = tsd_get(zfs_allow_log_key); 3492 error = spa_open(poolname, &spa, FTAG); 3493 strfree(poolname); 6640 char *poolname = arg; local [all...] |
| zfs_vfsops.c | 1768 * "poolname/root-dataset-objnum". 1858 getpoolname(const char *osname, char *poolname) 1866 (void) strcpy(poolname, osname); 1870 (void) strncpy(poolname, osname, p - osname); 1871 poolname[p - osname] = '\0';
|
| spa.c | 4525 char *poolname; local 4530 if (nvlist_lookup_string(tryconfig, ZPOOL_CONFIG_POOL_NAME, &poolname)) 4556 poolname) == 0); 4587 "%s/%s", poolname, ++cp);
|
| /src/external/gpl3/binutils/dist/gas/config/ |
| tc-mcore.c | 137 static char poolname[8]; variable 691 make_name (poolname, POOL_START_LABEL, poolnumber); 692 poolsym = symbol_make (poolname);
|
| tc-csky.c | 502 static char poolname[8]; variable 2121 make_internal_label (poolname, POOL_START_LABEL, poolnumber); 2122 poolsym = symbol_make (poolname);
|
| /src/external/gpl3/binutils.old/dist/gas/config/ |
| tc-mcore.c | 137 static char poolname[8]; variable 691 make_name (poolname, POOL_START_LABEL, poolnumber); 692 poolsym = symbol_make (poolname);
|
| tc-csky.c | 502 static char poolname[8]; variable 2121 make_internal_label (poolname, POOL_START_LABEL, poolnumber); 2122 poolsym = symbol_make (poolname);
|
| /src/external/cddl/osnet/dist/cmd/zhack/ |
| zhack.c | 158 g_importargs.poolname = g_pool;
|
| /src/external/cddl/osnet/dist/common/zfs/ |
| zfs_ioctl_compat.c | 1195 char *poolname, *snapname;
|