Lines Matching full:next_str
2124 char *read_buf = NULL, *next_str = NULL, *current_str = NULL, *buf = NULL;
2151 next_str = strchr(current_str, '\n');
2152 if (!next_str)
2154 *next_str++ = '\0';
2158 if((current_str = next_str) == NULL)
2167 if((current_str = next_str) == NULL)
2188 if((current_str = next_str) == NULL)
2238 if((current_str = next_str) == NULL)
2283 char *read_buf, *next_str, *current_str, *buf, *p, *verb_name;
2333 next_str = strchr(current_str, '\n');
2334 if (!next_str)
2336 *next_str++ = '\0';
2340 if((current_str = next_str) == NULL)
2378 if((current_str = next_str) == NULL)
2413 if((current_str = next_str) == NULL)
2455 char *next_str, *buf, *p, *verb_ptr, *temp_ptr;
2459 next_str = strchr(current_str, '\n');
2460 if (!next_str)
2462 *next_str++ = '\0';
2516 verb_count = get_num_verbs_config_format(next_str);
2526 &next_str, index, CTRL_LIST_VERB);
2531 device_count = get_num_device_config_format(next_str);
2545 &next_str, 0, CTRL_LIST_DEVICE);
2564 mod_count = get_num_mod_config_format(next_str);
2578 &next_str, 0, CTRL_LIST_MODIFIER);
2596 if((current_str = next_str) == NULL)
2706 char *current_str, *next_str, *str_addr, *buf;
2709 next_str = (char *)malloc((strlen(nxt_str)+1)*sizeof(char));
2710 if (next_str == NULL) {
2714 strlcpy(next_str, nxt_str, ((strlen(nxt_str)+1)*sizeof(char)));
2715 str_addr = next_str;
2716 current_str = next_str;
2718 next_str = strchr(current_str, '\n');
2719 if (!next_str)
2721 *next_str++ = '\0';
2728 if (*next_str == (char)EOF)
2730 if((current_str = next_str) == NULL)
2740 char *current_str, *next_str, *str_addr, *buf;
2743 next_str = (char *)malloc((strlen(nxt_str)+1)*sizeof(char));
2744 if (next_str == NULL) {
2748 strlcpy(next_str, nxt_str, ((strlen(nxt_str)+1)*sizeof(char)));
2749 str_addr = next_str;
2750 current_str = next_str;
2752 next_str = strchr(current_str, '\n');
2753 if (!next_str)
2755 *next_str++ = '\0';
2759 if (*next_str == (char)EOF)
2761 if((current_str = next_str) == NULL)
2771 char *current_str, *next_str, *str_addr, *buf;
2774 next_str = (char *)malloc((strlen(nxt_str)+1)*sizeof(char));
2775 if (next_str == NULL) {
2779 strlcpy(next_str, nxt_str, ((strlen(nxt_str)+1)*sizeof(char)));
2780 str_addr = next_str;
2781 current_str = next_str;
2783 next_str = strchr(current_str, '\n');
2784 if (!next_str)
2786 *next_str++ = '\0';
2790 if (*next_str == (char)EOF)
2792 if((current_str = next_str) == NULL)
2802 char *current_str, *next_str, *str_addr, *buf, *p;
2805 next_str = (char *)malloc((strlen(nxt_str)+1)*sizeof(char));
2806 if (next_str == NULL) {
2810 strlcpy(next_str, nxt_str, ((strlen(nxt_str)+1)*sizeof(char)));
2811 str_addr = next_str;
2812 current_str = next_str;
2814 next_str = strchr(current_str, '\n');
2815 if (!next_str)
2817 *next_str++ = '\0';
2821 if (*next_str == (char)EOF)
2823 if((current_str = next_str) == NULL)
2833 char *current_str, *next_str, *str_addr, *buf;
2836 next_str = (char *)malloc((strlen(nxt_str)+1)*sizeof(char));
2837 if (next_str == NULL) {
2841 strlcpy(next_str, nxt_str, ((strlen(nxt_str)+1)*sizeof(char)));
2842 str_addr = next_str;
2843 current_str = next_str;
2845 next_str = strchr(current_str, '\n');
2846 if (!next_str)
2848 *next_str++ = '\0';
2855 if ((*next_str == (char)EOF) || (count == 2))
2857 if((current_str = next_str) == NULL)
2877 char *read_buf, *next_str, *current_str, *verb_ptr;
2916 next_str = strchr(current_str, '\n');
2917 if (!next_str)
2919 *next_str++ = '\0';
2925 &next_str, index, CTRL_LIST_VERB);
2935 &next_str, index, CTRL_LIST_DEVICE);
2959 &next_str, index, CTRL_LIST_MODIFIER);
2979 if((current_str = next_str) == NULL)
3180 char *current_str, *next_str, *str_addr;
3183 next_str = (char *)malloc((strlen(nxt_str)+1)*sizeof(char));
3184 if (next_str == NULL) {
3188 strlcpy(next_str, nxt_str, ((strlen(nxt_str)+1)*sizeof(char)));
3189 str_addr = next_str;
3191 current_str = next_str;
3192 next_str = strchr(current_str, '\n');
3193 if ((!next_str) || (!strncasecmp(current_str, "EndSection", 10)))
3195 *next_str++ = '\0';
3201 if (*next_str == (char)EOF)
3220 char *p, *current_str, *next_str, *name;
3246 current_str = *cur_str; next_str = *nxt_str;
3248 current_str = next_str;
3249 next_str = strchr(current_str, '\n');
3250 if ((!next_str) || (!strncasecmp(current_str, "EndSection", 10)))
3252 *next_str++ = '\0';
3306 controls_count = get_controls_count(next_str);
3319 controls_count = get_controls_count(next_str);
3332 if (*next_str == (char)EOF)
3336 *cur_str = current_str; *nxt_str = next_str;