Home
last modified time | relevance | path

Searched refs:arg_data_size (Results 1 – 3 of 3) sorted by relevance

/src/contrib/llvm-project/lldb/source/Host/openbsd/
H A DHost.cpp65 size_t arg_data_size = sizeof(arg_data); in GetOpenBSDProcessArgs() local
66 if (::sysctl(mib, 4, arg_data, &arg_data_size, NULL, 0) == 0) { in GetOpenBSDProcessArgs()
67 DataExtractor data(arg_data, arg_data_size, endian::InlHostByteOrder(), in GetOpenBSDProcessArgs()
86 while ((p != NULL) && (*p == '\0') && offset < arg_data_size) { in GetOpenBSDProcessArgs()
90 if (p == NULL || offset >= arg_data_size) in GetOpenBSDProcessArgs()
/src/contrib/llvm-project/lldb/source/Host/freebsd/
H A DHost.cpp59 size_t arg_data_size = sizeof(arg_data); in GetFreeBSDProcessArgs() local
60 if (::sysctl(mib, 4, arg_data, &arg_data_size, NULL, 0) != 0) in GetFreeBSDProcessArgs()
63 DataExtractor data(arg_data, arg_data_size, endian::InlHostByteOrder(), in GetFreeBSDProcessArgs()
91 while ((p != NULL) && (*p == '\0') && offset < arg_data_size) { in GetFreeBSDProcessArgs()
95 if (p == NULL || offset >= arg_data_size) in GetFreeBSDProcessArgs()
/src/contrib/llvm-project/lldb/source/Host/netbsd/
H A DHostNetBSD.cpp61 size_t arg_data_size = sizeof(arg_data); in GetNetBSDProcessArgs() local
62 if (::sysctl(mib, 4, arg_data, &arg_data_size, NULL, 0) != 0) in GetNetBSDProcessArgs()
65 DataExtractor data(arg_data, arg_data_size, endian::InlHostByteOrder(), in GetNetBSDProcessArgs()
87 while ((p != NULL) && (*p == '\0') && offset < arg_data_size) { in GetNetBSDProcessArgs()
91 if (p == NULL || offset >= arg_data_size) in GetNetBSDProcessArgs()