Home
last modified time | relevance | path

Searched defs:buf (Results 1 – 25 of 36) sorted by relevance

12

/art/runtime/jdwp/
Djdwp_bits.h70 static inline void Set1(uint8_t* buf, uint8_t val) { in Set1()
75 static inline void Set2BE(uint8_t* buf, uint16_t val) { in Set2BE()
81 static inline void Set4BE(uint8_t* buf, uint32_t val) { in Set4BE()
89 static inline void Set8BE(uint8_t* buf, uint64_t val) { in Set8BE()
Djdwp.h62 static inline void SetFieldId(uint8_t* buf, FieldId val) { return Set4BE(buf, val); } in SetFieldId()
63 static inline void SetMethodId(uint8_t* buf, MethodId val) { return Set4BE(buf, val); } in SetMethodId()
64 static inline void SetObjectId(uint8_t* buf, ObjectId val) { return Set8BE(buf, val); } in SetObjectId()
65 static inline void SetRefTypeId(uint8_t* buf, RefTypeId val) { return Set8BE(buf, val); } in SetRefTypeId()
66 static inline void SetFrameId(uint8_t* buf, FrameId val) { return Set8BE(buf, val); } in SetFrameId()
Djdwp_expand_buf.cc153 static void SetUtf8String(uint8_t* buf, const char* str, size_t strLen) { in SetUtf8String()
179 void expandBufAddLocation(ExpandBuf* buf, const JdwpLocation& location) { in expandBufAddLocation()
/art/runtime/base/unix_file/
Drandom_access_file_test.h56 char buf[256]; in ReadString() local
67 char buf[256]; in TestRead() local
159 char buf[256]; in TestWrite() local
Dnull_file.cc36 int64_t NullFile::Read(char* buf, int64_t byte_count, int64_t offset) const { in Read()
54 int64_t NullFile::Write(const char* buf, int64_t byte_count, int64_t offset) { in Write()
Dstring_file.cc38 int64_t StringFile::Read(char *buf, int64_t byte_count, int64_t offset) const { in Read()
66 int64_t StringFile::Write(const char *buf, int64_t byte_count, int64_t offset) { in Write()
Dmapped_file.cc112 int64_t MappedFile::Read(char* buf, int64_t byte_count, int64_t offset) const { in Read()
148 int64_t MappedFile::Write(const char* buf, int64_t byte_count, int64_t offset) { in Write()
Drandom_access_file_utils.cc26 std::vector<char> buf(4096); in CopyFile() local
Dfd_file.cc138 int64_t FdFile::Read(char* buf, int64_t byte_count, int64_t offset) const { in Read()
163 int64_t FdFile::Write(const char* buf, int64_t byte_count, int64_t offset) { in Write()
Dnull_file_test.cc29 char buf[256]; in TEST_F() local
/art/runtime/
Dzip_archive_test.cc55 uint8_t buf[kBufSize]; in TEST_F() local
Dmonitor_android.cc30 static void Set4LE(uint8_t* buf, uint32_t val) { in Set4LE()
Dtrace.cc211 static void Append2LE(uint8_t* buf, uint16_t val) { in Append2LE()
217 static void Append4LE(uint8_t* buf, uint32_t val) { in Append4LE()
225 static void Append8LE(uint8_t* buf, uint64_t val) { in Append8LE()
492 static void DumpBuf(uint8_t* buf, size_t buf_size, TraceClockSource clock_source) in DumpBuf()
/art/sigchainlib/
Dsigchain_dummy.cc30 char buf[256]; in log() local
Dsigchain.cc83 char buf[256]; in log() local
/art/runtime/base/
Dstringprintf.cc51 char* buf = new char[length]; in StringAppendV() local
Dstringpiece.cc28 int StringPiece::copy(char* buf, size_type n, size_type pos) const { in copy()
/art/compiler/dex/quick/arm/
Dtarget_arm.cc297 static char* DecodeRegList(int opcode, int vector, char* buf, size_t buf_size) { in DecodeRegList()
320 static char* DecodeFPCSRegList(int count, int base, char* buf, size_t buf_size) { in DecodeFPCSRegList()
354 std::string buf; in BuildInsnString() local
492 char buf[256]; in DumpResourceMask() local
/art/test/070-nio-buffer/src/
DMain.java29 ByteBuffer buf = ByteBuffer.allocateDirect(16); in main() local
/art/compiler/
Doutput_stream_test.cc43 uint8_t buf[] = { 1, 2, 3, 4, 5, 6, 7, 8, 9 }; in GenerateTestOutput() local
Delf_writer_quick.cc963 static void UpdateWord(std::vector<uint8_t>*buf, int offset, int data) { in UpdateWord()
970 static void PushWord(std::vector<uint8_t>*buf, int data) { in PushWord()
977 static void PushHalf(std::vector<uint8_t>*buf, int data) { in PushHalf()
/art/compiler/dex/quick/mips/
Dtarget_mips.cc195 std::string buf; in BuildInsnString() local
288 char buf[256]; in DumpResourceMask() local
/art/runtime/hprof/
Dhprof.cc71 #define U2_TO_BUF_BE(buf, offset, value) \ argument
80 #define U4_TO_BUF_BE(buf, offset, value) \ argument
91 #define U8_TO_BUF_BE(buf, offset, value) \ argument
637 unsigned char buf[4]; in WriteFixedHeader() local
/art/compiler/dex/quick/arm64/
Dtarget_arm64.cc235 static void DecodeRegExtendOrShift(int operand, char *buf, size_t buf_size) { in DecodeRegExtendOrShift()
336 std::string buf; in BuildInsnString() local
521 char buf[256]; in DumpResourceMask() local
/art/compiler/dex/quick/
Dcodegen_util.cc280 std::string buf; in DumpPromotionMap() local
429 static void Push32(std::vector<uint8_t>&buf, int data) { in Push32()
437 static void PushPointer(std::vector<uint8_t>&buf, const void* pointer, bool target64) { in PushPointer()
447 static void AlignBuffer(std::vector<uint8_t>&buf, size_t offset) { in AlignBuffer()

12