Searched refs:text_in (Results 1 – 4 of 4) sorted by relevance
/openbmc/openbmc/poky/meta/lib/oeqa/selftest/cases/ |
H A D | runqemu.py | 74 text_in = 'media=cdrom' 75 …self.assertIn(text_in, f.read(), "Failed to find '%s' in '%s' after running '%s'" % (text_in, qemu… 91 text_in = 'format=vmdk' 92 …self.assertIn(text_in, f.read(), "Failed to find '%s' in '%s' after running '%s'" % (text_in, qemu… 100 text_in = 'format=vdi' 101 …self.assertIn(text_in, f.read(), "Failed to find '%s' in '%s' after running '%s'" % (text_in, qemu…
|
/openbmc/linux/drivers/target/iscsi/ |
H A D | iscsi_target.c | 2235 unsigned char *text_in = cmd->text_in_ptr, *text_ptr; in iscsit_process_text_cmd() local 2238 if (!text_in) { in iscsit_process_text_cmd() 2247 if (strncmp("SendTargets=", text_in, 12) != 0) { in iscsit_process_text_cmd() 2253 text_ptr = strchr(text_in, '='); in iscsit_process_text_cmd() 2295 char *text_in = NULL; in iscsit_handle_text_cmd() local 2311 text_in = kzalloc(rx_size, GFP_KERNEL); in iscsit_handle_text_cmd() 2312 if (!text_in) in iscsit_handle_text_cmd() 2315 cmd->text_in_ptr = text_in; in iscsit_handle_text_cmd() 2318 iov[niov].iov_base = text_in; in iscsit_handle_text_cmd() 2338 text_in, rx_size, 0, NULL, in iscsit_handle_text_cmd() [all …]
|
/openbmc/linux/drivers/target/iscsi/cxgbit/ |
H A D | cxgbit_target.c | 1162 unsigned char *text_in = NULL; in cxgbit_handle_text_cmd() local 1187 text_in = kzalloc(payload_length, GFP_KERNEL); in cxgbit_handle_text_cmd() 1188 if (!text_in) { in cxgbit_handle_text_cmd() 1194 text_in, payload_length); in cxgbit_handle_text_cmd() 1196 text_in[payload_length - 1] = '\0'; in cxgbit_handle_text_cmd() 1198 cmd->text_in_ptr = text_in; in cxgbit_handle_text_cmd()
|
/openbmc/linux/drivers/infiniband/ulp/isert/ |
H A D | ib_isert.c | 1203 unsigned char *text_in = NULL; in isert_handle_text_cmd() local 1210 text_in = kzalloc(payload_length, GFP_KERNEL); in isert_handle_text_cmd() 1211 if (!text_in) in isert_handle_text_cmd() 1214 cmd->text_in_ptr = text_in; in isert_handle_text_cmd()
|