Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DInstrProfWriter.h149 std::unique_ptr<MemoryBuffer> writeBuffer();
/freebsd/contrib/llvm-project/llvm/lib/ProfileData/
H A DInstrProfWriter.cpp1021 std::unique_ptr<MemoryBuffer> InstrProfWriter::writeBuffer() { in writeBuffer() function in InstrProfWriter
/freebsd/contrib/sqlite3/
H A Dsqlite3.c46444 char writeBuffer[PROXY_MAXCONCHLEN]; in proxyTakeConch() local
46447 writeBuffer[0] = (char)PROXY_CONCHVERSION; in proxyTakeConch()
46448 memcpy(&writeBuffer[PROXY_HEADERLEN], myHostID, PROXY_HOSTIDLEN); in proxyTakeConch()
46450 strlcpy(&writeBuffer[PROXY_PATHINDEX], pCtx->lockProxyPath, in proxyTakeConch()
46453 strlcpy(&writeBuffer[PROXY_PATHINDEX], tempLockPath, MAXPATHLEN); in proxyTakeConch()
46455 writeSize = PROXY_PATHINDEX + strlen(&writeBuffer[PROXY_PATHINDEX]); in proxyTakeConch()
46457 rc = unixWrite((sqlite3_file *)conchFile, writeBuffer, writeSize, 0); in proxyTakeConch()