Lines Matching refs:wcmd
4035 WCHAR *wcmd, *wcwd = NULL; in vim_create_process() local
4037 wcmd = enc_to_utf16((char_u *)cmd, NULL); in vim_create_process()
4038 if (wcmd == NULL) in vim_create_process()
4049 wcmd, // Command to execute in vim_create_process()
4059 vim_free(wcmd); in vim_create_process()
4071 WCHAR *wcmd; in vim_shell_execute() local
4073 wcmd = enc_to_utf16((char_u *)cmd, NULL); in vim_shell_execute()
4074 if (wcmd == NULL) in vim_shell_execute()
4077 ret = ShellExecuteW(NULL, NULL, wcmd, NULL, NULL, n_show_cmd); in vim_shell_execute()
4078 vim_free(wcmd); in vim_shell_execute()
4621 WCHAR *wcmd; in mch_system_c() local
4635 wcmd = enc_to_utf16(buf, NULL); in mch_system_c()
4639 wcmd = enc_to_utf16((char_u *)cmd, NULL); in mch_system_c()
4641 if (wcmd == NULL) in mch_system_c()
4644 ret = _wsystem(wcmd); in mch_system_c()
4645 vim_free(wcmd); in mch_system_c()