Lines Matching defs:out_buf_size
352 size_t out_buf_size, len = 0, flag = 0;
358 out_buf_size = len + 1;
359 // out_buf_size = len + 3; // Modified to not put quotes around the string
361 out = ensure(pAllocator, p, out_buf_size);
363 out = (char *)cJSON_malloc_instance_scope(pAllocator, out_buf_size);
367 loader_strncpy(ptr2, out_buf_size, str, out_buf_size);
374 out_buf_size = 3;
376 out = ensure(pAllocator, p, out_buf_size);
378 out = (char *)cJSON_malloc_instance_scope(pAllocator, out_buf_size);
380 loader_strncpy(out, out_buf_size, "\"\"", 3);
394 out_buf_size = len + 1;
395 // out_buf_size = len + 3; // Modified to not put quotes around the string
397 out = ensure(pAllocator, p, out_buf_size);
399 out = (char *)cJSON_malloc_instance_scope(pAllocator, out_buf_size);
432 snprintf(ptr2, out_buf_size - (ptr2 - out), "u%04x", token);