MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / WriteRawValue

Method WriteRawValue

rapidjson/writer.h:428–435  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

426 bool WriteEndArray() { os_->Put(']'); return true; }
427
428 bool WriteRawValue(const Ch* json, size_t length) {
429 PutReserve(*os_, length);
430 for (size_t i = 0; i < length; i++) {
431 RAPIDJSON_ASSERT(json[i] != '\0');
432 PutUnsafe(*os_, json[i]);
433 }
434 return true;
435 }
436
437 void Prefix(Type type) {
438 (void)type;

Callers

nothing calls this directly

Calls 2

PutReserveFunction · 0.70
PutUnsafeFunction · 0.70

Tested by

no test coverage detected