Searched refs:init_sz (Results 1 – 2 of 2) sorted by relevance
/third_party/node/src/ |
D | node_env_var.cc | 86 size_t init_sz = 256; in Get() local 88 int ret = uv_os_getenv(key, *val, &init_sz); in Get() 93 val.AllocateSufficientStorage(init_sz); in Get() 94 ret = uv_os_getenv(key, *val, &init_sz); in Get() 98 return Just(std::string(*val, init_sz)); in Get() 137 size_t init_sz = sizeof(val); in Query() local 138 int ret = uv_os_getenv(key, val, &init_sz); in Query()
|
D | node_credentials.cc | 60 size_t init_sz = 256; in SafeGetenv() local 62 int ret = uv_os_getenv(key, *val, &init_sz); in SafeGetenv() 67 val.AllocateSufficientStorage(init_sz); in SafeGetenv() 68 ret = uv_os_getenv(key, *val, &init_sz); in SafeGetenv()
|