Lines Matching refs:strptr
143 char *strptr; in fs_parse_opts_for_sec_modes() local
146 strptr = strdup(cmd); in fs_parse_opts_for_sec_modes()
147 if (strptr == NULL) { in fs_parse_opts_for_sec_modes()
152 temp_str = strptr; in fs_parse_opts_for_sec_modes()
161 if (strstr(strptr, "sec=") != NULL) { in fs_parse_opts_for_sec_modes()
163 next_str = strptr; in fs_parse_opts_for_sec_modes()
166 next_str = strstr(strptr, "sec="); in fs_parse_opts_for_sec_modes()
168 if (strncmp(strptr, "sec=", 4) != 0) { in fs_parse_opts_for_sec_modes()
171 strptr = next_str; in fs_parse_opts_for_sec_modes()
172 next_str = strstr(strptr + 4, "sec="); in fs_parse_opts_for_sec_modes()
176 secstringarray[*count] = strdup(strptr); in fs_parse_opts_for_sec_modes()
188 strptr = next_str; in fs_parse_opts_for_sec_modes()