Home
last modified time | relevance | path

Searched refs:string_array (Results 1 – 9 of 9) sorted by relevance

/freebsd-13.1/sys/contrib/libnv/
H A Dcnvlist.c108 CNVLIST_GET_ARRAY(const char * const *, string_array, STRING_ARRAY)
173 CNVLIST_TAKE_ARRAY(char **, string_array, STRING_ARRAY)
212 CNVLIST_FREE(string_array)
H A Dnvlist.c1427 NVLIST_EXISTS(string_array, STRING_ARRAY) in NVLIST_EXISTS()
2030 NVLIST_FREE(string_array, STRING_ARRAY) in NVLIST_FREE()
/freebsd-13.1/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointIDList.cpp86 llvm::ArrayRef<const char *> string_array, CommandReturnObject &result) { in InsertStringArray() argument
87 if(string_array.empty()) in InsertStringArray()
90 for (const char *str : string_array) { in InsertStringArray()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DBreakpointIDList.h51 void InsertStringArray(llvm::ArrayRef<const char *> string_array,
/freebsd-13.1/sys/dev/bhnd/nvram/
H A Dbhnd_nvram_value.h275 BHND_NVRAM_VAL_FMT_DECL(string_array);
H A Dbhnd_nvram_value_fmts.c230 BHND_NVRAM_VAL_FMT_NATIVE(string_array, STRING_ARRAY);
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DIRForTarget.cpp473 ConstantDataSequential *string_array = nullptr; in RewriteObjCConstString() local
476 string_array = dyn_cast<ConstantDataSequential>(cstr->getInitializer()); in RewriteObjCConstString()
482 …m_intptr_ty, cstr ? (string_array->getNumElements() - 1) * string_array->getElementByteSize() : 0,… in RewriteObjCConstString()
484 switch (cstr ? string_array->getElementByteSize() : 1) { in RewriteObjCConstString()
498 string_array->getElementByteSize()); in RewriteObjCConstString()
/freebsd-13.1/sys/contrib/openzfs/lib/libnvpair/
H A Dlibnvpair.c255 NVLIST_ARRPRTFUNC(string_array, char *, char *, "%s")
466 NVLIST_PRINTCTL_AREPLACE(string_array, char **)
727 ARENDER(pctl, string_array, nvl, name, val, nelem); in nvlist_print_with_indent()
896 NVPA(elem, string_array, char *, char *, "'%s'"); in dump_nvlist()
/freebsd-13.1/contrib/googletest/googlemock/test/
H A Dgmock-generated-matchers_test.cc1220 const char* string_array[] = { "fee", "fie", "foe", "fum" }; in TEST() local
1221 EXPECT_THAT(string_array, Contains(Eq(std::string("fum")))); in TEST()