Home
last modified time | relevance | path

Searched refs:buf_p (Results 1 – 6 of 6) sorted by relevance

/external/selinux/libselinux/src/
Dlabel_support.c68 char **spec_entry, *buf_p; in read_spec_entries() local
83 buf_p = line_buf; in read_spec_entries()
84 while (isspace(*buf_p)) in read_spec_entries()
85 buf_p++; in read_spec_entries()
88 if (*buf_p == '#' || *buf_p == '\0') in read_spec_entries()
98 if (len - 1 == buf_p - line_buf) { in read_spec_entries()
103 rc = read_spec_entry(spec_entry, &buf_p, &entry_len, errbuf); in read_spec_entries()
Dselinux_config.c161 char *line_buf = NULL, *buf_p, *value, *type = NULL, *end; in init_selinux_config() local
173 buf_p = line_buf; in init_selinux_config()
174 while (isspace(*buf_p)) in init_selinux_config()
175 buf_p++; in init_selinux_config()
176 if (*buf_p == '#' || *buf_p == 0) in init_selinux_config()
179 if (!strncasecmp(buf_p, SELINUXTYPETAG, in init_selinux_config()
181 type = strdup(buf_p + sizeof(SELINUXTYPETAG) - 1); in init_selinux_config()
196 } else if (!strncmp(buf_p, REQUIRESEUSERS, in init_selinux_config()
198 value = buf_p + sizeof(REQUIRESEUSERS) - 1; in init_selinux_config()
Dlabel_media.c38 char *buf_p; in process_line() local
41 buf_p = line_buf; in process_line()
42 while (isspace(*buf_p)) in process_line()
43 buf_p++; in process_line()
45 if (*buf_p == '#' || *buf_p == 0) in process_line()
Dlabel_x.c40 char *buf_p; in process_line() local
43 buf_p = line_buf; in process_line()
44 while (isspace(*buf_p)) in process_line()
45 buf_p++; in process_line()
47 if (*buf_p == '#' || *buf_p == 0) in process_line()
/external/selinux/libsepol/src/
Dutil.c255 char **arg, *buf_p; in tokenize() local
260 buf_p = line_buf; in tokenize()
265 for (items = 0; items < num_args && *buf_p != '\0'; items++) { in tokenize()
270 *arg = strdup(buf_p); in tokenize()
278 rc = tokenize_str(delim, arg, &buf_p, &arg_len); in tokenize()
/external/mesa3d/src/imgui/
Dimgui.cpp9348 char *buf_p = buf, *buf_end = buf + IM_ARRAYSIZE(buf); in ShowMetricsWindow() local
9355buf_p += ImFormatString(buf_p, buf_end - buf_p, "%s %04d: pos (%8.2f,%8.2f), uv (%.6f,%.6f), col %… in ShowMetricsWindow()