Searched refs:arg_data_size (Results 1 – 2 of 2) sorted by relevance
/external/lldb/source/Host/freebsd/ |
D | Host.cpp | 193 size_t arg_data_size = sizeof(arg_data); in GetFreeBSDProcessArgs() local 194 if (::sysctl (mib, 4, arg_data, &arg_data_size , NULL, 0) == 0) in GetFreeBSDProcessArgs() 196 … DataExtractor data (arg_data, arg_data_size, lldb::endian::InlHostByteOrder(), sizeof(void *)); in GetFreeBSDProcessArgs() 215 while ((p != NULL) && (*p == '\0') && offset < arg_data_size) in GetFreeBSDProcessArgs() 220 if (p == NULL || offset >= arg_data_size) in GetFreeBSDProcessArgs()
|
/external/lldb/source/Host/macosx/ |
D | Host.mm | 1142 size_t arg_data_size = sizeof(arg_data); 1143 if (::sysctl (proc_args_mib, 3, arg_data, &arg_data_size , NULL, 0) == 0) 1145 … DataExtractor data (arg_data, arg_data_size, lldb::endian::InlHostByteOrder(), sizeof(void *));
|