Lines Matching full:line
102 * as a line ending when reading complete lines from the stream.
108 P_("The accepted types of line ending"),
250 * @type: the type of new line return as #GDataStreamNewlineType.
739 * Reads a line from the data input stream.
745 * Returns: a string with the line that was read in (without the newlines).
746 * Set @length to a #gsize to get the length of the read line.
762 char *line;
800 line = g_malloc (found_pos + newline_len + 1);
803 line,
809 line[found_pos] = 0;
811 return line;
943 gchar *line;
958 data->line = g_malloc (read_length + 1);
959 data->line[read_length] = '\0';
963 data->line, read_length, NULL, NULL);
1026 /* didn't find a full line; need to buffer some more bytes */
1045 /* read the line and the EOL. no error is possible. */
1063 g_free (data->line);
1087 data->line = NULL;
1104 gchar *line;
1113 line = data->line;
1114 data->line = NULL;
1116 if (length && line)
1119 return line;
1201 * Returns: a string with the line that was read in (without the newlines).
1202 * Set @length to a #gsize to get the length of the read line.