Searched refs:stringbuf (Results 1 – 10 of 10) sorted by relevance
/freebsd/contrib/ncurses/ncurses/tinfo/ |
H A D | alloc_entry.c | 56 static char *stringbuf; /* buffer for string capabilities */ 67 if (stringbuf != NULL) { in _nc_init_entry() 68 FreeAndNull(stringbuf); in _nc_init_entry() 76 if (stringbuf == NULL) in _nc_init_entry() 77 TYPE_CALLOC(char, (size_t) MAX_ENTRY_SIZE, stringbuf); in _nc_init_entry() 110 if (stringbuf != NULL) { in _nc_save_str() 123 result = (stringbuf + next_free - 1); in _nc_save_str() 126 _nc_STRCPY(&stringbuf[next_free], string, MAX_ENTRY_SIZE); in _nc_save_str() 130 result = (stringbuf + old_next_free); in _nc_save_str() 150 if (ep == NULL || stringbuf == NULL) in _nc_wrap_entry() [all …]
|
/freebsd/sys/kern/ |
H A D | subr_hints.c | 407 static char stringbuf[256]; in resource_string_copy() local 417 bcopy(s, &stringbuf[offset], len); in resource_string_copy() 418 stringbuf[offset + len] = '\0'; in resource_string_copy() 419 ret = &stringbuf[offset]; in resource_string_copy()
|
/freebsd/contrib/llvm-project/libcxx/include/__fwd/ |
H A D | sstream.h | 32 using stringbuf = basic_stringbuf<char>; variable 45 class _LIBCPP_PREFERRED_NAME(stringbuf) _LIBCPP_IF_WIDE_CHARACTERS(_LIBCPP_PREFERRED_NAME(wstringbu…
|
/freebsd/contrib/llvm-project/libcxx/modules/std/ |
H A D | sstream.cppm |
|
/freebsd/contrib/llvm-project/libcxx/include/ |
H A D | sstream | 18 // Class template basic_stringbuf [stringbuf] 31 // [stringbuf.cons] constructors: 62 // [stringbuf.assign] Assign and swap: 67 // [stringbuf.members] Member functions: 83 // [stringbuf.virtuals] Overridden virtual functions: 94 // [stringbuf.assign] non member swap 99 typedef basic_stringbuf<char> stringbuf; 334 // Class template basic_stringbuf [stringbuf] 356 // [stringbuf.cons] constructors: 435 // [stringbuf.assign] Assign and swap: [all …]
|
H A D | iosfwd | 60 typedef basic_stringbuf<char> stringbuf;
|
/freebsd/cddl/usr.sbin/zfsd/ |
H A D | case_file.cc | 976 std::stringbuf lineBuf; in DeSerialize()
|
/freebsd/contrib/llvm-project/clang/lib/Tooling/Inclusions/Stdlib/ |
H A D | StdSymbolMap.inc | 2757 SYMBOL(stringbuf, std::, <sstream>) 2758 SYMBOL(stringbuf, std::, <iosfwd>)
|
/freebsd/contrib/unbound/doc/ |
H A D | Changelog | 11204 - various snprintf use sizeof(stringbuf) instead of fixed constant.
|
/freebsd/contrib/ncurses/ |
H A D | NEWS | 758 + use calloc in _nc_init_entry() when allocating stringbuf, to ensure
|