Lines Matching refs:msg

353 +extern int write_to_child (saver_info* si, const char* cmd, const char *msg);
627 + - msg - type of message - "input", "raise_wid", etc.
631 + "msg\n" if no data, otherwise "msg=data\n"
634 + with NULL msg & data, and TRUE for flush.
637 +write_to_parent (const char* msg, const char *data, gboolean flush)
643 + msg, data ? data : "(null)");
647 + if (msg)
650 + len = fprintf (parent_file, "%s=%s\n", msg, data);
652 + len = fprintf (parent_file, "%s\n", msg);
663 +write_windowid (const char* msg, Window w)
668 + write_to_parent(msg, s, FALSE);
1016 + Most likely, the returned error msg of g_io_channel_read_line(),
1117 + hmsg = NULL; /* only show msg */
1810 + - msg - message to send, such as ul_ok
1814 + "msg\n" if no data, otherwise "msg=data\n"
1817 +write_to_child (saver_info* si, const char* msg, const char *data)
1819 + if (msg == NULL)
1836 + si->pw_data->stdin_fd, msg, data ? data : "(null)");
1840 + len = fprintf (si->pw_data->stdin_file, "%s=%s\n", msg, data);
1842 + len = fprintf (si->pw_data->stdin_file, "%s\n", msg);
1882 + char *msg, *data;
1888 + msg = fgets (buffer, sizeof (buffer), pw->stdout_file);
1889 + if (!msg) /* child closed pipe */
1906 + fprintf (stderr, "Child sent message: %s\n", msg);
1908 + /* search for =, and if found, split msg & data into two strings there */
1909 + data = strchr(msg, '=');
1930 + if ((strcmp(msg, "input") == 0)) /* User input */
1937 + else if ((strcmp(msg, "ungrab_keyboard") == 0))
1974 + else if ((strcmp(msg, "ungrab_pointer") == 0))
1989 + if ((strcmp (msg, "dialog_win") == 0))
2019 + else if ((strcmp (msg, "raise_win") == 0))
2792 if (msg)
2795 + write_to_child (si, "ul_message", msg);
2799 update_passwd_window (si, msg, 0.0);
2921 - const struct pam_message **msg,
2925 + struct pam_message **msg,
3237 - const struct pam_message **msg,
3241 + struct pam_message **msg,