Home
last modified time | relevance | path

Searched refs:cmd (Results 1 – 25 of 181) sorted by relevance

12345678

/hardware/broadcom/wlan/bcmdhd/wifi_hal/
Dcommon.cpp52 wifi_error wifi_register_handler(wifi_handle handle, int cmd, nl_recvmsg_msg_cb_t func, void *arg) in wifi_register_handler() argument
62 info->event_cb[info->num_event_cb].nl_cmd = cmd; in wifi_register_handler()
68 arg, func, cmd, info->num_event_cb); in wifi_register_handler()
103 void wifi_unregister_handler(wifi_handle handle, int cmd) in wifi_unregister_handler() argument
107 if (cmd == NL80211_CMD_VENDOR) { in wifi_unregister_handler()
115 if (info->event_cb[i].nl_cmd == cmd) { in wifi_unregister_handler()
117 info->event_cb[i].cb_arg, info->event_cb[i].cb_func, cmd, i); in wifi_unregister_handler()
153 wifi_error wifi_register_cmd(wifi_handle handle, int id, WifiCommand *cmd) in wifi_register_cmd() argument
162 info->cmd[info->num_cmd].id = id; in wifi_register_cmd()
163 info->cmd[info->num_cmd].cmd = cmd; in wifi_register_cmd()
[all …]
Dwifi_hal.cpp224 info->cmd = (cmd_info *)malloc(sizeof(cmd_info) * DEFAULT_CMD_SIZE); in wifi_initialize()
325 WifiCommand *cmd = (WifiCommand *)cbi->cb_arg; in wifi_cleanup() local
326 ALOGI("Command left in event_cb %p:%s", cmd, (cmd ? cmd->getType(): "")); in wifi_cleanup()
331 cmd_info *cmdi = &(info->cmd[bad_commands]); in wifi_cleanup()
332 WifiCommand *cmd = cmdi->cmd; in wifi_cleanup() local
333 if (cmd != NULL) { in wifi_cleanup()
334 ALOGI("Cancelling command %p:%s", cmd, cmd->getType()); in wifi_cleanup()
336 cmd->cancel(); in wifi_cleanup()
339 ALOGI("Cancelling command %p:%s did not work", cmd, (cmd ? cmd->getType(): "")); in wifi_cleanup()
343 cmd->releaseRef(); in wifi_cleanup()
[all …]
Dwifi_logger.cpp374 DebugCommand *cmd = new DebugCommand(iface, buffer, &buffer_size, GET_FW_VER); in wifi_get_firmware_version() local
375 return (wifi_error)cmd->start(); in wifi_get_firmware_version()
386 DebugCommand *cmd = new DebugCommand(iface, buffer, &buffer_size, GET_DRV_VER); in wifi_get_driver_version() local
387 return (wifi_error)cmd->start(); in wifi_get_driver_version()
397 DebugCommand *cmd = new DebugCommand(iface, ring_name, GET_RING_DATA); in wifi_get_ring_data() local
398 return (wifi_error)cmd->start(); in wifi_get_ring_data()
406 DebugCommand *cmd = new DebugCommand(iface, num_rings, status, GET_RING_STATUS); in wifi_get_ring_buffers_status() local
407 return (wifi_error)cmd->start(); in wifi_get_ring_buffers_status()
419 DebugCommand *cmd = new DebugCommand(iface, support, GET_FEATURE); in wifi_get_logger_supported_feature_set() local
420 return (wifi_error)cmd->start(); in wifi_get_logger_supported_feature_set()
[all …]
Dcommon.h140 WifiCommand *cmd; member
167 cmd_info *cmd; // Outstanding commands member
190 wifi_error wifi_register_handler(wifi_handle handle, int cmd, nl_recvmsg_msg_cb_t func, void *arg);
194 void wifi_unregister_handler(wifi_handle handle, int cmd);
197 wifi_error wifi_register_cmd(wifi_handle handle, int id, WifiCommand *cmd);
200 void wifi_unregister_cmd(wifi_handle handle, WifiCommand *cmd);
/hardware/marvell/bt/libbt-vendor/
Dhardware_mrvl.c60 uint16_t cmd; member
109 static char *cmd_to_str(uint16_t cmd) in cmd_to_str() argument
111 switch (cmd) { in cmd_to_str()
141 static HC_BT_HDR *build_cmd_buf(uint16_t cmd, uint8_t pl_len, uint8_t *payload) in build_cmd_buf() argument
162 UINT16_TO_STREAM(p, cmd); in build_cmd_buf()
182 STREAM_TO_UINT16(evt_params->cmd, p); in parse_evt_buf()
200 switch (evt_params.cmd) { in hw_mrvl_config_start_cb()
209 evt_params.cmd); in hw_mrvl_config_start_cb()
221 uint16_t cmd; in hw_mrvl_sco_config_cb() local
231 switch (evt_params.cmd) { in hw_mrvl_sco_config_cb()
[all …]
/hardware/qcom/bt/msm8992/libbt-vendor/src/
Dhw_rome.c306 int hci_send_wipower_vs_cmd(int fd, unsigned char *cmd, unsigned char *rsp, int size) in hci_send_wipower_vs_cmd() argument
312 ret = write(fd, cmd, size); in hci_send_wipower_vs_cmd()
331 int hci_send_vs_cmd(int fd, unsigned char *cmd, unsigned char *rsp, int size) in hci_send_vs_cmd() argument
336 ret = write(fd, cmd, size); in hci_send_vs_cmd()
357 unsigned char *cmd, in frame_hci_cmd_pkt() argument
365 memset(cmd, 0x0, HCI_MAX_CMD_SIZE); in frame_hci_cmd_pkt()
367 cmd_hdr = (void *) (cmd + 1); in frame_hci_cmd_pkt()
369 cmd[0] = HCI_COMMAND_PKT; in frame_hci_cmd_pkt()
372 cmd[4] = edl_cmd; in frame_hci_cmd_pkt()
378 memcpy(&cmd[5], phdr_buffer, PATCH_HDR_LEN); in frame_hci_cmd_pkt()
[all …]
Dhw_ar3k.c123 static int send_hci_cmd_sync(int dev, uint8_t *cmd, int len, uint8_t **event) in send_hci_cmd_sync() argument
134 if (write(dev, (unsigned char *)cmd, len) != len) in send_hci_cmd_sync()
243 static void load_hci_ps_hdr(uint8_t *cmd, uint8_t ps_op, int len, int index) in load_hci_ps_hdr() argument
245 hci_command_hdr *ch = (void *)cmd; in load_hci_ps_hdr()
250 cmd += HCI_COMMAND_HDR_SIZE; in load_hci_ps_hdr()
252 cmd[0] = ps_op; in load_hci_ps_hdr()
253 cmd[1] = index; in load_hci_ps_hdr()
254 cmd[2] = index >> 8; in load_hci_ps_hdr()
255 cmd[3] = len; in load_hci_ps_hdr()
314 uint8_t cmd[HCI_MAX_CMD_SIZE]; in write_ps_cmd() local
[all …]
/hardware/intel/img/psb_video/src/mrst/
Dpsb_MPEG2MC.c151 uint32_t cmd; in psb__MPEG2MC_send_interPB_prediction() local
178 cmd = 0; in psb__MPEG2MC_send_interPB_prediction()
180 REGIO_WRITE_FIELD(cmd, MSVDX_CMDS, INTER_BLOCK_PREDICTION, INTER_PRED_BLOCK_SIZE, blk_size); in psb__MPEG2MC_send_interPB_prediction()
182 REGIO_WRITE_FIELD(cmd, MSVDX_CMDS, INTER_BLOCK_PREDICTION, REF_INDEX_A, ctx->ref_indexA); in psb__MPEG2MC_send_interPB_prediction()
183 REGIO_WRITE_FIELD(cmd, MSVDX_CMDS, INTER_BLOCK_PREDICTION, REF_INDEX_B, ctx->ref_indexB); in psb__MPEG2MC_send_interPB_prediction()
186 REGIO_WRITE_FIELD(cmd, MSVDX_CMDS, INTER_BLOCK_PREDICTION, REF_INDEX_A_VALID, 1); in psb__MPEG2MC_send_interPB_prediction()
187 REGIO_WRITE_FIELD(cmd, MSVDX_CMDS, INTER_BLOCK_PREDICTION, REF_INDEX_B_VALID, 1); in psb__MPEG2MC_send_interPB_prediction()
189 REGIO_WRITE_FIELD(cmd, MSVDX_CMDS, INTER_BLOCK_PREDICTION, REF_INDEX_A_VALID, in psb__MPEG2MC_send_interPB_prediction()
191 REGIO_WRITE_FIELD(cmd, MSVDX_CMDS, INTER_BLOCK_PREDICTION, REF_INDEX_B_VALID, in psb__MPEG2MC_send_interPB_prediction()
202 REGIO_WRITE_FIELD(cmd, MSVDX_CMDS, INTER_BLOCK_PREDICTION, in psb__MPEG2MC_send_interPB_prediction()
[all …]
Dpsb_VC1.c1805 uint32_t cmd; in psb__VC1_setup_alternative_frame() local
1824 cmd = 0; in psb__VC1_setup_alternative_frame()
1825 …REGIO_WRITE_FIELD_LITE(cmd, MSVDX_CMDS, ALTERNATIVE_OUTPUT_PICTURE_ROTATION , ALT_PICTURE_ENABLE, … in psb__VC1_setup_alternative_frame()
1826 …REGIO_WRITE_FIELD_LITE(cmd, MSVDX_CMDS, ALTERNATIVE_OUTPUT_PICTURE_ROTATION , ROTATION_ROW_STRIDE,… in psb__VC1_setup_alternative_frame()
1827 …REGIO_WRITE_FIELD_LITE(cmd, MSVDX_CMDS, ALTERNATIVE_OUTPUT_PICTURE_ROTATION , RECON_WRITE_DISABLE,… in psb__VC1_setup_alternative_frame()
1828 …REGIO_WRITE_FIELD_LITE(cmd, MSVDX_CMDS, ALTERNATIVE_OUTPUT_PICTURE_ROTATION , ROTATION_MODE, GET_S… in psb__VC1_setup_alternative_frame()
1830 psb_cmdbuf_rendec_write(cmdbuf, cmd); in psb__VC1_setup_alternative_frame()
1842 uint32_t cmd; in psb__VC1_send_rendec_params() local
1958 cmd = 0; in psb__VC1_send_rendec_params()
1960 …REGIO_WRITE_FIELD(cmd, VC1_RENDEC_CMD, VC1SEQUENCE00, PICTURE_HEIGHT, (ctx->display_picture_height… in psb__VC1_send_rendec_params()
[all …]
Dpsb_MPEG4.c943 uint32_t cmd; in psb__MPEG4_setup_alternative_frame() local
962 cmd = 0; in psb__MPEG4_setup_alternative_frame()
963 …REGIO_WRITE_FIELD_LITE(cmd, MSVDX_CMDS, ALTERNATIVE_OUTPUT_PICTURE_ROTATION , ALT_PICTURE_ENABLE, … in psb__MPEG4_setup_alternative_frame()
964 …REGIO_WRITE_FIELD_LITE(cmd, MSVDX_CMDS, ALTERNATIVE_OUTPUT_PICTURE_ROTATION , ROTATION_ROW_STRIDE,… in psb__MPEG4_setup_alternative_frame()
965 …REGIO_WRITE_FIELD_LITE(cmd, MSVDX_CMDS, ALTERNATIVE_OUTPUT_PICTURE_ROTATION , RECON_WRITE_DISABLE,… in psb__MPEG4_setup_alternative_frame()
966 …REGIO_WRITE_FIELD_LITE(cmd, MSVDX_CMDS, ALTERNATIVE_OUTPUT_PICTURE_ROTATION , ROTATION_MODE, GET_S… in psb__MPEG4_setup_alternative_frame()
968 psb_cmdbuf_rendec_write(cmdbuf, cmd); in psb__MPEG4_setup_alternative_frame()
975 uint32_t cmd; in psb__MPEG4_set_picture_params() local
1013 cmd = 0; in psb__MPEG4_set_picture_params()
1014 …REGIO_WRITE_FIELD_LITE(cmd, MSVDX_CMDS, DISPLAY_PICTURE_SIZE, DISPLAY_PICTURE_HEIGHT, ctx->coded_p… in psb__MPEG4_set_picture_params()
[all …]
/hardware/qcom/audio/legacy/libalsa-intf/
Dalsaucm_test.c65 struct cmd { struct
70 static struct cmd cmds[] = {
167 struct cmd *cmd = NULL; in process_cmd() local
177 for (cmd = cmds; cmd->cmd_str != NULL; cmd++) { in process_cmd()
178 if (strncmp(cmd->cmd_str, command, strlen(cmd->cmd_str)) == 0) in process_cmd()
182 if (cmd->cmd_str == NULL) { in process_cmd()
187 if ((identifier == NULL) && ((cmd->code != UCM_HELP) && in process_cmd()
188 (cmd->code != UCM_LISTCARDS) && (cmd->code != UCM_RESET) && in process_cmd()
189 (cmd->code != UCM_RELOAD))) in process_cmd()
195 switch (cmd->code) { in process_cmd()
[all …]
/hardware/ti/omap4-aah/test/CameraHal/
Dcamera_test_script.cpp179 void trim_script_cmd(char *cmd) { in trim_script_cmd() argument
183 while ( NULL != (cr = strchr(cmd, '\r'))) { in trim_script_cmd()
190 while ( NULL != (nl = strchr(cmd, '\n'))) { in trim_script_cmd()
204 char *cmd, *ctx, *cycle_cmd, *temp_cmd; in execute_functional_script() local
224 cmd = strtok_r((char *) script, DELIMITER, &ctx); in execute_functional_script()
226 while ( NULL != cmd && (stopScript == false)) { in execute_functional_script()
227 trim_script_cmd(cmd); in execute_functional_script()
228 id = cmd[0]; in execute_functional_script()
229 printf("Full Command: %s \n", cmd); in execute_functional_script()
230 printf("Command: %c \n", cmd[0]); in execute_functional_script()
[all …]
/hardware/broadcom/wlan/bcmdhd/dhdutil/
Ddhdu_linux.c81 cmd_t *cmd = NULL; in dhd_find_cmd() local
83 for (cmd = dhd_cmds; cmd->name && strcmp(cmd->name, name); cmd++); in dhd_find_cmd()
84 if (cmd->name == NULL) in dhd_find_cmd()
85 cmd = NULL; in dhd_find_cmd()
86 return cmd; in dhd_find_cmd()
145 dhd_ioctl(void *dhd, int cmd, void *buf, int len, bool set) in dhd_ioctl() argument
165 ioc.cmd = cmd; in dhd_ioctl()
172 if (ret < 0 && cmd != get_magic) in dhd_ioctl()
180 int wl_ioctl(void *wl, int cmd, void *buf, int len, bool set) in wl_ioctl() argument
182 return dhd_ioctl(wl, cmd, buf, len, set); /* Call actual wl_ioctl here: Shubhro */ in wl_ioctl()
[all …]
Ddhdu.c120 static int dhd_do_msglevel(void *dhd, cmd_t *cmd, char **argv, dbg_msg_t *dbg_msg);
417 dhd_cmd_usage(cmd_t *cmd) in dhd_cmd_usage() argument
419 if (strlen(cmd->name) >= 8) in dhd_cmd_usage()
420 fprintf(stderr, "%s\n\t%s\n\n", cmd->name, cmd->help); in dhd_cmd_usage()
422 fprintf(stderr, "%s\t%s\n\n", cmd->name, cmd->help); in dhd_cmd_usage()
429 cmd_t *cmd; in dhd_list() local
438 for (cmd = dhd_cmds, nrows = 0; cmd->name; cmd++) in dhd_list()
455 for (cmd = dhd_cmds; cmd->name; cmd++) { in dhd_list()
456 if (cmd->name[0] == letter || cmd->name[0] == letter - 0x20) { in dhd_list()
457 strcat(buf+row*80, cmd->name); in dhd_list()
[all …]
Ddhdu_cmd.h24 typedef struct cmd cmd_t;
25 typedef int (cmd_func_t)(void *dhd, cmd_t *cmd, char **argv);
28 struct cmd { struct
46 extern int dhd_get(void *dhd, int cmd, void *buf, int len); argument
47 extern int dhd_set(void *dhd, int cmd, void *buf, int len);
/hardware/qcom/wlan/qcwcn/wpa_supplicant_8_lib/
Ddriver_cmd_nl80211.c54 static void wpa_driver_notify_country_change(void *ctx, char *cmd) in wpa_driver_notify_country_change() argument
56 if ((os_strncasecmp(cmd, "COUNTRY", 7) == 0) || in wpa_driver_notify_country_change()
57 (os_strncasecmp(cmd, "SETBAND", 7) == 0)) { in wpa_driver_notify_country_change()
62 if (os_strncasecmp(cmd, "COUNTRY", 7) == 0) { in wpa_driver_notify_country_change()
64 if (os_strlen(cmd) > 9) { in wpa_driver_notify_country_change()
65 event.channel_list_changed.alpha2[0] = cmd[8]; in wpa_driver_notify_country_change()
66 event.channel_list_changed.alpha2[1] = cmd[9]; in wpa_driver_notify_country_change()
75 int wpa_driver_nl80211_driver_cmd(void *priv, char *cmd, char *buf, in wpa_driver_nl80211_driver_cmd() argument
85 if (os_strcasecmp(cmd, "STOP") == 0) { in wpa_driver_nl80211_driver_cmd()
90 } else if (os_strcasecmp(cmd, "START") == 0) { in wpa_driver_nl80211_driver_cmd()
[all …]
/hardware/broadcom/wlan/bcmdhd/wpa_supplicant_8_lib/
Ddriver_cmd_nl80211.c48 static void wpa_driver_notify_country_change(void *ctx, char *cmd) in wpa_driver_notify_country_change() argument
50 if ((os_strncasecmp(cmd, "COUNTRY", 7) == 0) || in wpa_driver_notify_country_change()
51 (os_strncasecmp(cmd, "SETBAND", 7) == 0)) { in wpa_driver_notify_country_change()
56 if (os_strncasecmp(cmd, "COUNTRY", 7) == 0) { in wpa_driver_notify_country_change()
58 if (os_strlen(cmd) > 9) { in wpa_driver_notify_country_change()
59 event.channel_list_changed.alpha2[0] = cmd[8]; in wpa_driver_notify_country_change()
60 event.channel_list_changed.alpha2[1] = cmd[9]; in wpa_driver_notify_country_change()
69 int wpa_driver_nl80211_driver_cmd(void *priv, char *cmd, char *buf, in wpa_driver_nl80211_driver_cmd() argument
91 " cmd (%s)", bss->ifname, cmd); in wpa_driver_nl80211_driver_cmd()
95 if (os_strcasecmp(cmd, "STOP") == 0) { in wpa_driver_nl80211_driver_cmd()
[all …]
Ddriver_cmd_wext.c131 static int wpa_driver_wext_set_cscan_params(char *buf, size_t buf_len, char *cmd) in wpa_driver_wext_set_cscan_params() argument
138 wpa_printf(MSG_DEBUG, "%s: %s", __func__, cmd); in wpa_driver_wext_set_cscan_params()
141 pasv_ptr = os_strstr(cmd, ",TIME="); in wpa_driver_wext_set_cscan_params()
149 channel = (u8)atoi(cmd + 5); in wpa_driver_wext_set_cscan_params()
281 int wpa_driver_wext_driver_cmd( void *priv, char *cmd, char *buf, size_t buf_len ) in wpa_driver_wext_driver_cmd() argument
288 wpa_printf(MSG_DEBUG, "%s %s len = %d", __func__, cmd, buf_len); in wpa_driver_wext_driver_cmd()
290 if (!drv->driver_is_started && (os_strcasecmp(cmd, "START") != 0)) { in wpa_driver_wext_driver_cmd()
295 if (os_strcasecmp(cmd, "RSSI-APPROX") == 0) { in wpa_driver_wext_driver_cmd()
296 os_strlcpy(cmd, RSSI_CMD, MAX_DRV_CMD_SIZE); in wpa_driver_wext_driver_cmd()
297 } else if( os_strncasecmp(cmd, "SCAN-CHANNELS", 13) == 0 ) { in wpa_driver_wext_driver_cmd()
[all …]
/hardware/ti/omap4xxx/test/CameraHal/
Dcamera_test_script.cpp102 char *cmd, *ctx, *cycle_cmd, *temp_cmd; in execute_functional_script() local
117 cmd = strtok_r((char *) script, DELIMITER, &ctx); in execute_functional_script()
119 while ( NULL != cmd && (stopScript == false)) { in execute_functional_script()
120 id = cmd[0]; in execute_functional_script()
121 printf("Full Command: %s \n", cmd); in execute_functional_script()
122 printf("Command: %c \n", cmd[0]); in execute_functional_script()
172 cycleCounter = atoi(cmd + 1); in execute_functional_script()
263 rotation = atoi(cmd + 1); in execute_functional_script()
277 if( strcmp((cmd + 1), previewSize[i].desc) == 0) in execute_functional_script()
289 res = strtok(cmd + 1, "x"); in execute_functional_script()
[all …]
/hardware/qcom/wlan/qcwcn/wifi_hal/
Dcommon.cpp57 wifi_error wifi_register_handler(wifi_handle handle, int cmd, nl_recvmsg_msg_cb_t func, void *arg) in wifi_register_handler() argument
66 if(info->event_cb[i].nl_cmd == cmd && in wifi_register_handler()
70 " and arg %p", func, cmd, arg); in wifi_register_handler()
77 info->event_cb[info->num_event_cb].nl_cmd = cmd; in wifi_register_handler()
83 ALOGI("Successfully added event handler %p for command %d", func, cmd); in wifi_register_handler()
133 void wifi_unregister_handler(wifi_handle handle, int cmd) in wifi_unregister_handler() argument
137 if (cmd == NL80211_CMD_VENDOR) { in wifi_unregister_handler()
145 if (info->event_cb[i].nl_cmd == cmd) { in wifi_unregister_handler()
154 ALOGI("Successfully removed event handler for command %d", cmd); in wifi_unregister_handler()
190 wifi_error wifi_register_cmd(wifi_handle handle, int id, WifiCommand *cmd) in wifi_register_cmd() argument
[all …]
Dcommon.h78 WifiCommand *cmd; member
107 cmd_info *cmd; // Outstanding commands member
138 wifi_error wifi_register_handler(wifi_handle handle, int cmd, nl_recvmsg_msg_cb_t func, void *arg);
142 void wifi_unregister_handler(wifi_handle handle, int cmd);
145 wifi_error wifi_register_cmd(wifi_handle handle, int id, WifiCommand *cmd);
147 void wifi_unregister_cmd(wifi_handle handle, WifiCommand *cmd);
/hardware/libhardware/modules/radio/
Dradio_hw.c124 struct thread_command *cmd = (struct thread_command *)calloc(1, sizeof(struct thread_command)); in send_command_l() local
127 if (cmd == NULL) in send_command_l()
132 cmd->type = type; in send_command_l()
134 if (cmd->type == CMD_CONFIG) { in send_command_l()
135 cmd->config = *(radio_hal_band_config_t *)param; in send_command_l()
136 ALOGV("%s CMD_CONFIG type %d", __func__, cmd->config.type); in send_command_l()
138 cmd->param = *(unsigned int *)param; in send_command_l()
149 cmd->ts = ts; in send_command_l()
150 list_add_tail(&tuner->command_list, &cmd->node); in send_command_l()
255 struct thread_command *cmd = NULL; in callback_thread_loop() local
[all …]
/hardware/qcom/camera/QCamera2/util/
DQCameraCmdThread.cpp130 int32_t QCameraCmdThread::sendCmd(camera_cmd_type_t cmd, uint8_t sync_cmd, uint8_t priority) in sendCmd() argument
138 node->cmd = cmd; in sendCmd()
171 camera_cmd_type_t cmd = CAMERA_CMD_TYPE_NONE; in getCmd() local
177 cmd = node->cmd; in getCmd()
180 return cmd; in getCmd()
/hardware/intel/img/psb_video/src/
Dpnw_VC1.c1796 uint32_t cmd; in psb__VC1_send_rendec_params() local
1908 cmd = 0; in psb__VC1_send_rendec_params()
1910 …REGIO_WRITE_FIELD(cmd, VC1_RENDEC_CMD, VC1SEQUENCE00, PICTURE_HEIGHT, (ctx->display_picture_height… in psb__VC1_send_rendec_params()
1911 …REGIO_WRITE_FIELD(cmd, VC1_RENDEC_CMD, VC1SEQUENCE00, PICTURE_WIDTH, (ctx->display_picture_width -… in psb__VC1_send_rendec_params()
1912 psb_cmdbuf_rendec_write(cmdbuf, cmd); in psb__VC1_send_rendec_params()
1915 cmd = 0; in psb__VC1_send_rendec_params()
1916 …REGIO_WRITE_FIELD(cmd, VC1_RENDEC_CMD, VC1SEQUENCE00, PICTURE_HEIGHT, (ctx->coded_picture_height -… in psb__VC1_send_rendec_params()
1917 …REGIO_WRITE_FIELD(cmd, VC1_RENDEC_CMD, VC1SEQUENCE00, PICTURE_WIDTH, (ctx->coded_picture_width - 1… in psb__VC1_send_rendec_params()
1918 psb_cmdbuf_rendec_write(cmdbuf, cmd); in psb__VC1_send_rendec_params()
1921 cmd = 0; in psb__VC1_send_rendec_params()
[all …]
/hardware/ril/reference-ril/
Dreference-ril.c794 char *cmd; local
807 asprintf(&cmd, "ATD%s%s;", p_dial->address, clir);
809 ret = at_send_command(cmd, NULL);
811 free(cmd);
821 char *cmd; local
829 asprintf(&cmd, "AT+CMGW=%d,%d", length, p_args->status);
831 err = at_send_command_sms(cmd, p_args->pdu, "+CMGW:", &p_response);
849 char *cmd; local
855 asprintf(&cmd, "AT+CHLD=1%d", p_line[0]);
857 ret = at_send_command(cmd, NULL);
[all …]

12345678