Searched refs:cstr (Results 51 - 68 of 68) sorted by relevance

123

/freebsd-11-stable/usr.bin/bc/
H A Dbc.y66 const char *cstr;
790 instructions[current].u.cstr = str;
841 fputs(instructions[i].u.cstr, stdout);
850 printf("]s%s\n", instructions[nodeidx].u.cstr);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/
H A DDataExtractor.cpp858 const char *cstr = reinterpret_cast<const char *>(PeekData(*offset_ptr, len)); local
859 if (cstr != nullptr) {
860 if (memchr(cstr, '\0', len) == nullptr) {
864 return cstr;
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/
H A DFormatEntity.h127 void AppendText(const char *cstr);
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/
H A DLog.h136 void PutCString(const char *cstr);
/freebsd-11-stable/contrib/subversion/subversion/include/
H A Dsvn_string.h355 /** Append the C string @a cstr onto @a targetstr.
361 const char *cstr);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DIRForTarget.cpp415 llvm::GlobalVariable *cstr) {
489 if (cstr)
490 string_array = dyn_cast<ConstantDataSequential>(cstr->getInitializer());
493 Constant *bytes_arg = cstr ? ConstantExpr::getBitCast(cstr, i8_ptr_ty)
496 m_intptr_ty, cstr ? (string_array->getNumElements() - 1) * string_array->getElementByteSize() : 0, false);
498 switch (cstr ? string_array->getElementByteSize() : 1) {
414 RewriteObjCConstString(llvm::GlobalVariable *ns_str, llvm::GlobalVariable *cstr) argument
/freebsd-11-stable/crypto/openssl/crypto/store/
H A Dstore.h490 char *cstr, size_t cstr_size);
498 char *cstr, size_t cstr_size);
H A Dstr_lib.c1311 char *cstr, size_t cstr_size)
1319 if ((attrs->values[code].cstring = BUF_strndup(cstr, cstr_size)))
1384 char *cstr, size_t cstr_size)
1396 return STORE_ATTR_INFO_set_cstr(attrs, code, cstr, cstr_size);
1310 STORE_ATTR_INFO_set_cstr(STORE_ATTR_INFO *attrs, STORE_ATTR_TYPES code, char *cstr, size_t cstr_size) argument
1383 STORE_ATTR_INFO_modify_cstr(STORE_ATTR_INFO *attrs, STORE_ATTR_TYPES code, char *cstr, size_t cstr_size) argument
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/
H A DSourceManager.cpp571 const uint8_t *cstr = m_data_sp->GetBytes() + start_line_offset; local
573 auto ref = llvm::StringRef(reinterpret_cast<const char *>(cstr), count);
H A DValueObject.cpp1016 const char *cstr = GetDataExtractor().PeekCStr(0); local
1017 if (cstr == nullptr) {
1024 memcpy(buffer_sp->GetBytes(), cstr, cstr_len);
1064 const char *cstr = data.PeekCStr(0); local
1065 size_t len = strnlen(cstr, k_max_buf_size);
1411 // to by cstr survives long enough for us to copy it to its destination -
/freebsd-11-stable/contrib/subversion/subversion/libsvn_subr/
H A Dstring.c667 svn_stringbuf_appendcstr(svn_stringbuf_t *targetstr, const char *cstr)
669 svn_stringbuf_appendbytes(targetstr, cstr, strlen(cstr));
663 svn_stringbuf_appendcstr(svn_stringbuf_t *targetstr, const char *cstr) argument
/freebsd-11-stable/contrib/llvm-project/lld/lib/ReaderWriter/MachO/
H A DMachOLinkingContext.cpp875 const char *cstr = nullTermSym.data() + 1; local
877 char *demangled = llvm::itaniumDemangle(cstr, nullptr, nullptr, &status);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ObjectFile/ELF/
H A DObjectFileELF.cpp231 const char *cstr = data.GetCStr(offset, llvm::alignTo(n_namesz, 4)); local
232 if (cstr == nullptr) {
238 n_name = cstr;
1198 const char *cstr; local
1203 cstr = data.GetCStr(&offset);
1204 if (cstr == nullptr) {
1211 llvm::StringRef path(cstr);
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/
H A DProcess.h1368 virtual bool SetExitStatus(int exit_status, const char *cstr);
1520 size_t ReadCStringFromMemory(lldb::addr_t vm_addr, char *cstr,
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/
H A DProcess.cpp1092 bool Process::SetExitStatus(int status, const char *cstr) { argument
1100 status, status, cstr ? "\"" : "", cstr ? cstr : "NULL", cstr ? "\"" : "");
1110 if (cstr)
1111 m_exit_string = cstr;
/freebsd-11-stable/contrib/gcc/
H A Dc-common.c768 cpp_string cstr = { 0, 0 }, strname;
775 if (cpp_interpret_string (parse_in, &strname, 1, &cstr, false))
778 return (char *) cstr.text;
767 cpp_string cstr = { 0, 0 }, strname; local
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/Rewrite/
H A DRewriteObjC.cpp3342 const char *cstr = RewrittenStr.c_str(); local
3343 while (*cstr++ != '{') ;
3344 S += cstr;
H A DRewriteModernObjC.cpp4130 const char *cstr = RewrittenStr.c_str(); local
4131 while (*cstr++ != '{') ;
4132 S += cstr;

Completed in 482 milliseconds

123