document value arrays.
[platform/upstream/glib.git] / docs / reference / glib / tmpl / glib-unused.sgml
1 <!-- ##### ENUM GChannelError ##### -->
2 <para>
3
4 </para>
5
6 @G_CHANNEL_ERROR_ACCES: 
7 @G_CHANNEL_ERROR_BADF: 
8 @G_CHANNEL_ERROR_DEADLK: 
9 @G_CHANNEL_ERROR_FAULT: 
10 @G_CHANNEL_ERROR_INVAL: 
11 @G_CHANNEL_ERROR_IO: 
12 @G_CHANNEL_ERROR_ISDIR: 
13 @G_CHANNEL_ERROR_MFILE: 
14 @G_CHANNEL_ERROR_NOLCK: 
15 @G_CHANNEL_ERROR_NOSPC: 
16 @G_CHANNEL_ERROR_PERM: 
17 @G_CHANNEL_ERROR_PIPE: 
18 @G_CHANNEL_ERROR_SPIPE: 
19 @G_CHANNEL_ERROR_ENCODE_RW: 
20 @G_CHANNEL_ERROR_FAILED: 
21
22 <!-- ##### ENUM GChannelStatus ##### -->
23 <para>
24
25 </para>
26
27 @G_CHANNEL_STATUS_NORMAL: 
28 @G_CHANNEL_STATUS_EOF: 
29 @G_CHANNEL_STATUS_PARTIAL_CHARS: 
30 @G_CHANNEL_STATUS_AGAIN: 
31 @G_CHANNEL_STATUS_INTR: 
32 @G_CHANNEL_STATUS_ERROR: 
33 @G_CHANNEL_STATUS_BAD_INPUT: 
34
35 <!-- ##### USER_FUNCTION GCompareFuncData ##### -->
36 <para>
37
38 </para>
39
40 @a: 
41 @b: 
42 @user_data: 
43 @Returns: 
44
45 <!-- ##### USER_FUNCTION GCompletionStrcmpFunc ##### -->
46 <para>
47
48 </para>
49
50 @s1: 
51 @s2: 
52 @Returns: 
53
54 <!-- ##### USER_FUNCTION GHookFreeFunc ##### -->
55 <para>
56
57 </para>
58
59 @hook_list: 
60 @hook: 
61
62 <!-- ##### ENUM GIOFileMode ##### -->
63 <para>
64
65 </para>
66
67 @G_IO_FILE_MODE_READ: 
68 @G_IO_FILE_MODE_WRITE: 
69 @G_IO_FILE_MODE_APPEND: 
70 @G_IO_FILE_MODE_READ_WRITE: 
71 @G_IO_FILE_MODE_READ_WRITE_TRUNCATE: 
72 @G_IO_FILE_MODE_READ_WRITE_APPEND: 
73
74 <!-- ##### MACRO G_CHANNEL_ERROR ##### -->
75 <para>
76
77 </para>
78
79
80 <!-- ##### MACRO G_HOOK_DEFERRED_DESTROY ##### -->
81 <para>
82
83 </para>
84
85
86 <!-- ##### MACRO G_IO_CHANNEL_DEFAULT_LINE_TERM ##### -->
87 <para>
88 One of %G_IO_CHANNEL_UNIX_LINE_TERM, %G_IO_CHANNEL_DOS_LINE_TERM,
89 or %G_IO_CHANNEL_MACINTOSH_LINE_TERM (unimplemented)
90 depending on the system type.
91 </para>
92
93
94 <!-- ##### MACRO G_IO_CHANNEL_DOS_LINE_TERM ##### -->
95 <para>
96
97 </para>
98
99
100 <!-- ##### MACRO G_IO_CHANNEL_ENCODE_RAW ##### -->
101 <para>
102 Encoding for nonbuffered IO. With this encoding, data must be
103 read using g_io_channel_read_chars(); the other functions will
104 not work.
105 </para>
106
107
108 <!-- ##### MACRO G_IO_CHANNEL_MACINTOSH_LINE_TERM ##### -->
109 <para>
110
111 </para>
112
113
114 <!-- ##### MACRO G_IO_CHANNEL_UNIX_LINE_TERM ##### -->
115 <para>
116
117 </para>
118
119
120 <!-- ##### MACRO access ##### -->
121 <para>
122
123 </para>
124
125
126 <!-- ##### MACRO close ##### -->
127 <para>
128
129 </para>
130
131
132 <!-- ##### MACRO fdopen ##### -->
133 <para>
134
135 </para>
136
137
138 <!-- ##### FUNCTION g_channel_error_from_errno ##### -->
139 <para>
140
141 </para>
142
143 @en: 
144 @Returns: 
145
146 <!-- ##### FUNCTION g_channel_error_quark ##### -->
147 <para>
148
149 </para>
150
151 @Returns: 
152
153 <!-- ##### FUNCTION g_convert_error_quark ##### -->
154 <para>
155
156 </para>
157
158 @Returns: 
159
160 <!-- ##### FUNCTION g_main_add_poll ##### -->
161 <para>
162 Adds a file descriptor to be polled.
163 This is usually combined with g_source_add() to add an event source.
164 The event source's check function will typically test the revents
165 field in the #GPollFD struct and return TRUE if events need to be processed.
166 </para>
167
168 @fd: a #GPollFD, which is a file descriptor together with a bitwise
169 combination of #GIOCondition flags determining which events to poll for.
170 @priority: the priority of the poll, which should be the same as the priority
171 used for g_source_add() to ensure that the file descriptor is polled whenever
172 the results may be needed.
173 See #G_PRIORITY_DEFAULT, #G_PRIORITY_DEFAULT_IDLE, #G_PRIORITY_HIGH,
174 #G_PRIORITY_HIGH_IDLE, and #G_PRIORITY_LOW.
175
176 <!-- ##### FUNCTION g_main_context_get ##### -->
177 <para>
178
179 </para>
180
181 @thread: 
182 @Returns: 
183
184 <!-- ##### FUNCTION g_main_loop_destroy ##### -->
185 <para>
186
187 </para>
188
189 @loop: 
190
191 <!-- ##### FUNCTION g_main_remove_poll ##### -->
192 <para>
193 Removes a file descriptor from the list being polled.
194 </para>
195
196 @fd: the #GPollFD to remove.
197
198 <!-- ##### FUNCTION g_main_win32_get_poll_func ##### -->
199 <para>
200
201 </para>
202
203 @Returns: 
204
205 <!-- ##### FUNCTION g_mem_check ##### -->
206 <para>
207 Checks if the given memory has already been freed. If it has it outputs
208 a warning message.
209 To use this function you must configure glib with the flag
210 '--enable-mem-check=yes' before compiling.
211 </para>
212
213 @mem: the memory to check.
214
215 <!-- ##### FUNCTION g_scanner_stat_mode ##### -->
216 <para>
217 Gets the file attributes.
218 This is the <structfield>st_mode</structfield> field from the
219 <structname>stat</structname> structure. See the <function>stat()</function>
220 documentation.
221 </para>
222
223 @filename: the file name.
224 @Returns: the file attributes.
225
226 <!-- ##### FUNCTION g_source_add ##### -->
227 <para>
228 </para>
229
230 @priority: 
231 @can_recurse: 
232 @funcs: 
233 @source_data: 
234 @user_data: 
235 @notify: 
236 @Returns: 
237 @source: 
238 @context: 
239
240 <!-- ##### FUNCTION g_source_connect ##### -->
241 <para>
242
243 </para>
244
245 @source: 
246 @func: 
247 @data: 
248 @notify: 
249
250 <!-- ##### FUNCTION g_source_connect_indirect ##### -->
251 <para>
252
253 </para>
254
255 @source: 
256 @callback_data: 
257 @callback_funcs: 
258
259 <!-- ##### FUNCTION g_source_remove_by_source_data ##### -->
260 <para>
261 Removes the first event source found with the given source data.
262 </para>
263 <para>
264 Event sources are sorted with the highest priority first. Sources with equal
265 priority are stored in the order in which they were added.
266 </para>
267
268 @source_data: the source data, which contains information specific to the
269 type of source.
270 @Returns: TRUE if an event source was found and removed.
271
272 <!-- ##### FUNCTION g_static_private_get_for_thread ##### -->
273 <para>
274
275 </para>
276
277 @private_key: 
278 @thread: 
279 @Returns: 
280
281 <!-- ##### FUNCTION g_static_private_set_for_thread ##### -->
282 <para>
283
284 </para>
285
286 @private_key: 
287 @thread: 
288 @data: 
289 @notify: 
290
291 <!-- ##### MACRO g_string ##### -->
292 <para>
293 Turns the argument into a string literal by using the '#' stringizing operator.
294 </para>
295
296 @x: text to convert to a literal string.
297
298 <!-- ##### MACRO getcwd ##### -->
299 <para>
300
301 </para>
302
303
304 <!-- ##### MACRO getpid ##### -->
305 <para>
306
307 </para>
308
309
310 <!-- ##### MACRO lseek ##### -->
311 <para>
312
313 </para>
314
315
316 <!-- ##### MACRO open ##### -->
317 <para>
318
319 </para>
320
321
322 <!-- ##### MACRO pclose ##### -->
323 <para>
324
325 </para>
326
327
328 <!-- ##### MACRO popen ##### -->
329 <para>
330
331 </para>
332
333
334 <!-- ##### MACRO read ##### -->
335 <para>
336
337 </para>
338
339
340 <!-- ##### MACRO write ##### -->
341 <para>
342
343 </para>
344
345