Lines Matching defs:halt
70 struct RndisHalt *halt;
605 memset_s(g_u.halt, sizeof(struct RndisHalt), 0, sizeof(struct RndisHalt));
606 g_u.halt->msgType = CPU_TO_LE32(RNDIS_MSG_HALT);
607 g_u.halt->msgLen = CPU_TO_LE32(sizeof(struct RndisHalt));
608 (void)HostRndisCommand(usbNet, (void *)g_u.halt, CONTROL_BUFFER_SIZE);
615 struct RndisHalt *halt = OsalMemAlloc(sizeof(struct RndisHalt));
617 memset_s(halt, sizeof(struct RndisHalt), 0, sizeof(struct RndisHalt));
618 halt->msgType = CPU_TO_LE32(RNDIS_MSG_HALT);
619 halt->msgLen = CPU_TO_LE32(sizeof(struct RndisHalt));
620 (void) HostRndisCommand(usbNet, (void *)halt, CONTROL_BUFFER_SIZE);
621 OsalMemFree(halt);