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

/system/wlan/ti/sta_dk_4_0_4_32/CUDK/CLI/
H A Dconsole.c281 char inbuf[INBUF_LENGTH]; local
322 if ( fgets( inbuf, sizeof(inbuf), stdin ) <= 0 )
325 console_ParseString( inbuf );
335 result = read(ipc_pipe[0], (U8 *)inbuf, (U16)sizeof(inbuf));
338 pid = *(inbuf + 0) | (*(inbuf + 1) << 8);
349 console_ParseString(inbuf + 2);
359 result = read(wipp_control_general_process_out_pipe[0], (U8 *)inbuf
[all...]
H A Dwipp_ctrl.c695 buffer ("inbuf") actual data should start at the ___ byte of the buffer.
699 void wipp_control_send_iperf_results_to_host(unsigned char event, char *inbuf, int result) argument
708 WIPP_HEADER(inbuf, '4');
709 inbuf[2] = event;
710 wipp_control_send_message((unsigned char*)inbuf, result + 3);
/system/wlan/ti/wilink_6_1/CUDK/os/linux/src/
H A Dosapi.c524 S32 os_getInputString(PS8 inbuf, S32 len) argument
555 if ( fgets( (char*)inbuf, len, stdin ) == NULL )
566 result = read(ipc_pipe[0], inbuf, len);
569 pid = *(inbuf + 0) | (*(inbuf + 1) << 8);
/system/wlan/ti/wilink_6_1/CUDK/configurationutility/src/
H A Dconsole.c802 S8 inbuf[INBUF_LENGTH]; local
814 res = os_getInputString(inbuf, sizeof(inbuf));
831 if( inbuf[os_strlen(inbuf)-1] == '\n' )
832 inbuf[os_strlen(inbuf)-1] = 0;
835 Console_ParseString(pConsole, inbuf);

Completed in 681 milliseconds