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

/vbox/src/VBox/Devices/EFI/Firmware/StdLib/LibC/Main/
H A DMain.c77 size_t AVsz; /* Size of a single nArgv string */ local
93 AVsz = wcstombs(NULL, Argv[count], ARG_MAX);
94 if(AVsz < 0) {
99 nArgvSize += AVsz;
115 AVsz = wcstombs(string, Argv[count], nArgvSize);
116 string[AVsz] = 0; /* NULL terminate the argument */
117 DEBUG((DEBUG_INFO, "Cvt[%d] %d \"%s\" --> \"%a\"\n", (INT32)count, (INT32)AVsz, Argv[count], nArgv[count]));
118 string += AVsz + 1;
119 nArgvSize -= AVsz + 1;

Completed in 286 milliseconds