Home
last modified time | relevance | path

Searched refs:command (Results 1 – 25 of 60) sorted by relevance

123

/hardware/ril/reference-ril/
Datchannel.h90 int at_send_command_singleline (const char *command,
94 int at_send_command_numeric (const char *command,
97 int at_send_command_multiline (const char *command,
104 int at_send_command (const char *command, ATResponse **pp_outResponse);
106 int at_send_command_sms (const char *command, const char *pdu,
Datchannel.c721 static int at_send_command_full_nolock (const char *command, ATCommandType type, in at_send_command_full_nolock() argument
735 err = writeline (command); in at_send_command_full_nolock()
796 static int at_send_command_full (const char *command, ATCommandType type, in at_send_command_full() argument
809 err = at_send_command_full_nolock(command, type, in at_send_command_full()
832 int at_send_command (const char *command, ATResponse **pp_outResponse) in at_send_command() argument
836 err = at_send_command_full (command, NO_RESULT, NULL, in at_send_command()
843 int at_send_command_singleline (const char *command, in at_send_command_singleline() argument
849 err = at_send_command_full (command, SINGLELINE, responsePrefix, in at_send_command_singleline()
866 int at_send_command_numeric (const char *command, in at_send_command_numeric() argument
871 err = at_send_command_full (command, NUMERIC, NULL, in at_send_command_numeric()
[all …]
/hardware/ti/wpan/bt_sco_app/
Dbt_sco_app.c61 static void send_hciCmd(int dev_id, int command_length, char **command);
165 static void send_hciCmd(int dev_id, int command_length, char **command) in send_hciCmd() argument
178 ogf = strtol(command[0], NULL, 16); in send_hciCmd()
179 ocf = strtol(command[1], NULL, 16); in send_hciCmd()
182 *ptr++ = (uint8_t) strtol(command[i], NULL, 16); in send_hciCmd()
249 char *command[] = { "0x3f", "0x106", /* OCF and OGF */ in main() local
298 send_hciCmd(-1,command_length,command); in main()
/hardware/ti/wpan/tools/FM/service/src/jni/
DJFmRxNative.cpp45 int command, long value);
1416 int command, long value) in nativeJFmRx_Callback() argument
1450 switch (command) in nativeJFmRx_Callback()
1456 (jint)command, in nativeJFmRx_Callback()
1463 (jint)command, in nativeJFmRx_Callback()
1470 (jint)command, in nativeJFmRx_Callback()
1477 (jint)command, in nativeJFmRx_Callback()
1484 (jint)command, in nativeJFmRx_Callback()
1491 (jint)command, in nativeJFmRx_Callback()
1498 (jint)command, in nativeJFmRx_Callback()
[all …]
/hardware/ti/wpan/tools/FM/FmRadioIf/src/java/com/ti/core/
DJFmRx.java84 void fmRxCmdEnable(JFmRx context, JFmRxStatus status, int command, long value); in fmRxCmdEnable() argument
86 void fmRxCmdDisable(JFmRx context, JFmRxStatus status, int command, long value); in fmRxCmdDisable() argument
88 void fmRxCmdSetBand(JFmRx context, JFmRxStatus status, int command, long value); in fmRxCmdSetBand() argument
90 void fmRxCmdGetBand(JFmRx context, JFmRxStatus status, int command, long value); in fmRxCmdGetBand() argument
92 void fmRxCmdSetMonoStereoMode(JFmRx context, JFmRxStatus status, int command, long value); in fmRxCmdSetMonoStereoMode() argument
94 void fmRxCmdGetMonoStereoMode(JFmRx context, JFmRxStatus status, int command, long value); in fmRxCmdGetMonoStereoMode() argument
96 void fmRxCmdGetMuteMode(JFmRx context, JFmRxStatus status, int command, long value); in fmRxCmdGetMuteMode() argument
98 void fmRxCmdSetMuteMode(JFmRx context, JFmRxStatus status, int command, long value); in fmRxCmdSetMuteMode() argument
100 void fmRxCmdSetRfDependentMuteMode(JFmRx context, JFmRxStatus status, int command, in fmRxCmdSetRfDependentMuteMode() argument
103 void fmRxCmdGetRfDependentMuteMode(JFmRx context, JFmRxStatus status, int command, in fmRxCmdGetRfDependentMuteMode() argument
[all …]
/hardware/libhardware_legacy/qemu/
Dqemu.c330 char command[256]; in qemu_control_command() local
334 len = qemu_command_vformat( command, sizeof command, fmt, args ); in qemu_control_command()
337 if (len < 0 || len >= (int)sizeof command) { in qemu_control_command()
341 D("%s: too large %d > %d", __FUNCTION__, len, (int)(sizeof command)); in qemu_control_command()
347 return qemu_control_send( command, len ); in qemu_control_command()
/hardware/ti/omap3/omx/audio/src/openmax_il/wbamr_enc/src/
DOMX_WbAmrEnc_CompThread.c102 OMX_COMMANDTYPE command; in WBAMRENC_CompThread() local
182 ret = read(pComponentPrivate->cmdPipe[0], &command, sizeof (command)); in WBAMRENC_CompThread()
198 nRet = WBAMRENC_HandleCommand(pComponentPrivate, command, commandData); in WBAMRENC_CompThread()
/hardware/ti/wpan/tools/FM/service/src/java/com/ti/server/
DStubFmService.java4954 public void fmRxCmdEnable(JFmRx context, JFmRxStatus status, int command, in fmRxCmdEnable() argument
4958 Log.d(TAG, " fmRxCmdEnable ( command: , status: , value: )" + command in fmRxCmdEnable()
4979 public synchronized void fmRxCmdDisable(JFmRx context, JFmRxStatus status, int command, in fmRxCmdDisable() argument
4983 Log.d(TAG, " fmRxCmdDisable ( command: , status: , value: )" + command in fmRxCmdDisable()
5020 public void fmRxCmdDestroy(JFmRx context, JFmRxStatus status, int command, in fmRxCmdDestroy() argument
5024 Log.d(TAG, " fmRxCmdDestroy ( command: , status: , value: )" + command in fmRxCmdDestroy()
5029 int command, long value) { in fmRxCmdDisableAudio() argument
5033 + command + "" + status + "" + value); in fmRxCmdDisableAudio()
5037 int command, long value) { in fmRxCmdGetRdsAfSwitchMode() argument
5042 + command + "" + status + "" + value); in fmRxCmdGetRdsAfSwitchMode()
[all …]
/hardware/ti/wlan/wl1271/TWD/Ctrl/
DCmdQueue.c769 TI_STATUS cmdQueue_Error (TI_HANDLE hCmdQueue, TI_UINT32 command, TI_UINT32 status, void *param) in cmdQueue_Error() argument
775 …TRACE1(pCmdQueue->hReport, REPORT_SEVERITY_ERROR , "cmdQueue_Error: Unknown Cmd (%d)\n", command); in cmdQueue_Error()
779 …SOLE,"cmdQueue_Error: Unknown IE, cmdType : %d (%d) IE: %d (%d)\n", command, command, (param) ? *(… in cmdQueue_Error()
782 cmdQueue_GetCmdString (command), in cmdQueue_Error()
783 command, in cmdQueue_Error()
784 (param) ? cmdQueue_GetIEString (command, *((TI_UINT16 *) param)) : "", in cmdQueue_Error()
/hardware/ti/omap3/omx/audio/src/openmax_il/g729_dec/tests/
DG729DecTest.c169 int command = 0; variable
354 if (command == 0){ in EmptyBufferDone()
544 command = atoi(argv[3]); in main()
546 switch (command ) { in main()
1100 if( ((2==command) || (4==command)) && (600 == frmCount)){ /*Stop Tests*/ in main()
1120 if(3 == command){ /*Pause Test*/ in main()
1130 else if ( 7 == command ){ /*Mute and UnMuteTest*/ in main()
1153 else if ( 8 == command ) { /*Set Volume Test*/ in main()
1212 …if((command == 2) || (( command == 5)&&(audioinfo->dasfMode == 0)) || (( command == 6)&&(audioinfo… in main()
1362 if (command == 0){ in send_input_buffer()
/hardware/libhardware_legacy/include/hardware_legacy/
Dwifi.h108 int wifi_command(const char *iface, const char *command, char *reply, size_t *reply_len);
/hardware/ti/omap3/omx/audio/src/openmax_il/wbamr_dec/tests/
DWBAmrDecTest.c644 int command; local
645 command = atoi(argv[6]);
647 switch (command ) {
1217 if((command == 13)){
1321 if(command != 13){
1343 if( ((2==command) || (4==command) ) && (50 == frmCount)){ /*Stop Tests*/
1399 if(3 == command){ /*Pause Test*/
1409 else if ( 10 == command ){ /*Mute and UnMuteTest*/
1431 else if ( 11 == command ) { /*Set Volume Test*/
1451 else if (command == 12) { /* frame lost test */
[all …]
/hardware/ti/omap4xxx/libtiutils/
DMessageQueue.cpp135 MSGQ_LOGDB("MQ.get(%d,%p,%p,%p,%p)", msg->command, msg->arg1,msg->arg2,msg->arg3,msg->arg4); in get()
209 MSGQ_LOGDB("MQ.put(%d,%p,%p,%p,%p)", msg->command, msg->arg1,msg->arg2,msg->arg3,msg->arg4); in put()
DMessageQueue.h55 unsigned int command; member
/hardware/ti/wlan/mac80211/ti-utils/
Dcalibrator.c286 const char *command, *section; in __handle_cmd() local
362 command = *argv; in __handle_cmd()
374 if (strcmp(cmd->name, command)) { in __handle_cmd()
/hardware/ti/wlan/wl1271/TWD/FW_Transfer/Export_Inc/
DCmdMBox_api.h50 typedef TI_STATUS (*TCmdMboxErrorCb) (TI_HANDLE hCmdQueue, TI_UINT32 command, TI_UINT32 status,…
/hardware/ti/wpan/
D.gitignore7 # command after changing this file, to see if there are
/hardware/broadcom/wlan/
D.gitignore7 # command after changing this file, to see if there are
/hardware/ti/wlan/
D.gitignore7 # command after changing this file, to see if there are
/hardware/ti/wlan/wl1271/TWD/Ctrl/Export_Inc/
DCmdQueue_api.h259 TI_STATUS cmdQueue_Error (TI_HANDLE hCmdQueue, TI_UINT32 command, TI_UINT32 status, void *param);
/hardware/ti/omap4xxx/camera/
DANativeWindowDisplayAdapter.cpp212 msg.command = DisplayThread::DISPLAY_EXIT; in ~ANativeWindowDisplayAdapter()
391 msg.command = DisplayThread::DISPLAY_START; in enableDisplay()
441 msg.command = DisplayThread::DISPLAY_STOP; in disableDisplay()
971 switch ( msg.command ) in processHalMsg()
1005 CAMHAL_LOGEB("Invalid Display Thread Command 0x%x.", msg.command); in processHalMsg()
/hardware/ti/wlan/mac80211/ti-utils/uim_rfkill/
Dreadme.txt20 For Angstrom, the following command should be done,
/hardware/ril/mock-ril/src/proto/
Dctrl.proto20 CTRL_CMD_ADD_DIALING_CALL = 1006; // this command is for testing
/hardware/ti/omap4xxx/camera/OMXCameraAdapter/
DOMXCameraAdapter.cpp1172 msg.command = CommandHandler::CAMERA_SWITCH_TO_EXECUTING; in switchToExecuting()
2282 msg.command = CommandHandler::CAMERA_PERFORM_AUTOFOCUS; in autoFocus()
2313 msg.command = CommandHandler::CAMERA_START_IMAGE_CAPTURE; in takePicture()
2730 if( ( msg->command != 0 || msg->command == ( unsigned int ) ( eEvent ) ) in SignalEvent()
2758 msg.command = OMXCallbackHandler::CAMERA_FOCUS_STATUS; in SignalEvent()
2789 if( ( msg->command != 0 || msg->command == ( unsigned int ) ( eEvent ) ) in RemoveEvent()
2827 msg->command = ( unsigned int ) eEvent; in RegisterForEvent()
2914 msg.command = OMXCameraAdapter::OMXCallbackHandler::CAMERA_FILL_BUFFER_DONE; in OMXCameraAdapterFillBufferDone()
3356 CAMHAL_LOGDB("msg.command = %d", msg.command); in Handler()
3357 switch ( msg.command ) { in Handler()
[all …]
/hardware/libhardware_legacy/wifi/
Dwifi.c843 int wifi_command(const char *ifname, const char *command, char *reply, size_t *reply_len) in wifi_command() argument
846 return wifi_send_command(PRIMARY, command, reply, reply_len); in wifi_command()
848 return wifi_send_command(SECONDARY, command, reply, reply_len); in wifi_command()

123