Home | History | Annotate | Download | only in freebsd

Lines Matching refs:cstr

159     char cstr[PATH_MAX];
160 size_t cstr_len = sizeof(cstr);
161 if (::sysctl (mib, 2, cstr, &cstr_len, NULL, 0) == 0)
163 s.assign (cstr, cstr_len);
174 char cstr[PATH_MAX];
175 size_t cstr_len = sizeof(cstr);
176 if (::sysctl (mib, 2, cstr, &cstr_len, NULL, 0) == 0)
178 s.assign (cstr, cstr_len);
198 const char *cstr;
200 cstr = data.GetCStr (&offset);
201 if (cstr)
203 process_info.GetExecutableFile().SetFile(cstr, false);
223 cstr = data.GetCStr(&offset);
224 if (cstr)
225 proc_args.AppendArgument(cstr);