#include "string_bytes.h"
#include "base64.h"
#include "node.h"
#include "node_buffer.h"
#include "v8.h"
#include <limits.h>
#include <string.h>
#include <vector>
Go to the source code of this file.
◆ CHECK_BUFLEN_IN_RANGE
#define CHECK_BUFLEN_IN_RANGE |
( |
|
len | ) |
|
Value:do { \
if ((
len) > Buffer::kMaxLength) { \
return MaybeLocal<Value>(); \
} \
} while (0)
#define SB_BUFFER_SIZE_EXCEEDED_ERROR
Definition at line 672 of file string_bytes.cc.
◆ EXTERN_APEX
#define EXTERN_APEX 0xFBEE9 |
◆ SB_BUFFER_CREATION_ERROR
#define SB_BUFFER_CREATION_ERROR v8::Exception::Error(OneByteString(isolate, "\"toString()\" failed")) |
◆ SB_BUFFER_SIZE_EXCEEDED_ERROR
#define SB_BUFFER_SIZE_EXCEEDED_ERROR v8::Exception::Error(OneByteString(isolate, "\"toString()\" failed")) |
◆ SB_MALLOC_FAILED_ERROR
#define SB_MALLOC_FAILED_ERROR v8::Exception::Error(OneByteString(isolate, "\"toString()\" failed")) |
◆ SB_STRING_TOO_LONG_ERROR
#define SB_STRING_TOO_LONG_ERROR v8::Exception::Error(OneByteString(isolate, "\"toString()\" failed")) |