Lines Matching defs:size
477 /* buffer was not large enough, reallocate to correct size */
674 /* Since we are using the default buffer size (4K), and have specified
677 * higher, and have a buffer size of <= 4K
891 size_t size;
906 size = sizeof(exepath);
907 if (uv__search_path(argv[0], exepath, &size) == 0) {
915 size = 0;
917 size += strlen(argv[i]) + 1;
920 size += (argc + 1) * sizeof(char*);
922 new_argv = uv__malloc(size);
930 size = strlen(argv[i]) + 1;
931 memcpy(s, argv[i], size);
933 s += size;
976 int uv_get_process_title(char* buffer, size_t size) {
978 if (buffer == NULL || size == 0)
989 if (size <= len) {
1118 int sockfd, sock6fd, inet6, i, r, size = 1;
1140 if (ioctl(sockfd, SIOCGSIZIFCONF, &size) == -1) {
1145 ifc.ifc_req = (struct ifreq*)uv__malloc(size);
1150 ifc.ifc_len = size;