Lines Matching defs:c
23 * Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
26 * Copyright (c) 2015 by Delphix. All rights reserved.
1883 char *c = NULL;
1888 c = strtok(tline, BE_WHITE_SPACE);
1890 if (c == NULL) {
1893 } else if (c[0] == '#') {
1896 } else if (strcmp(c, "title") == 0) {
1943 } else if (strcmp(c, "bootfs") == 0) {
2402 const char *c = NULL;
2417 c = be_name;
2418 while (*c != '\0' && *c != '/' && *c != ' ' && *c != '%')
2419 c++;
2421 if (*c != '\0')
2475 char *c = NULL;
2493 c = strchr(policy, ':');
2494 if (c == NULL) {
2498 c[0] = '\0';
2507 if (c[1] == NULL || c[1] == '\0') {
2511 reserved = c+1;
2512 c = strchr(reserved, ':');
2513 if (c == NULL) {
2517 c[0] = '\0';
2526 if (c[1] == NULL || c[1] == '\0') {
2530 date = c+1;
3446 char *c;
3507 for (c = comments_buf; *c != '\0' && isspace(*c); c++)
3509 if (*c == '\0') {
3511 } else if (*c == '#') {
3647 char *c = NULL;
3663 c = num_str + 1;
3664 while (c[0] != '\0' && isdigit(c[0]))
3665 c++;
3670 if (c[0] == '\0')
3717 c = num_str;
3718 while (c[0] != '\0' && isdigit(c[0]))
3719 c++;
3720 if (c[0] != '\0')
3763 "%s%c%d", base_be_name, BE_AUTO_NAME_DELIM, num);
3804 (void) snprintf(auto_be_name, sizeof (auto_be_name), "%s%c%d",
3807 if ((c = strdup(auto_be_name)) == NULL) {
3813 return (c);