Searched defs:cchOpcode (Results 1 - 1 of 1) sorted by relevance

/vbox/src/VBox/ValidationKit/utils/TestExecServ/
H A DTestExecService.cpp337 size_t cchOpcode = strlen(pszOpcode); local
338 if (RT_LIKELY(cchOpcode == sizeof(pReply->achOpcode)))
342 Assert(cchOpcode == sizeof(pReply->achOpcode));
343 while (cchOpcode > 0 && pszOpcode[cchOpcode - 1] == ' ')
344 cchOpcode--;
345 AssertMsgReturn(cchOpcode < sizeof(pReply->achOpcode), ("%d/'%.8s'\n", cchOpcode, pszOpcode), VERR_INTERNAL_ERROR_4); local
346 memcpy(pReply->achOpcode, pszOpcode, cchOpcode);
347 memset(&pReply->achOpcode[cchOpcode], ' ', sizeo
[all...]

Completed in 69 milliseconds