Home
last modified time | relevance | path

Searched refs:maxLen (Results 1 - 1 of 1) sorted by relevance

/applications/standard/calendardata/calendarmanager/napi/src/
H A Dnapi_util.cpp115 size_t maxLen = STR_MAX_LENGTH; in GetValue() local
116 status = napi_get_value_string_utf8(env, in, NULL, 0, &maxLen); in GetValue()
117 if (maxLen == 0 || maxLen == UINT_MAX) { in GetValue()
120 LOG_DEBUG("napi_value -> std::string get length %{public}d", (int)maxLen); in GetValue()
121 char* buf = new (std::nothrow) char[STR_TAIL_LENGTH + maxLen]; in GetValue()
124 status = napi_get_value_string_utf8(env, in, buf, STR_TAIL_LENGTH + maxLen, &len); in GetValue()

Completed in 2 milliseconds