if __GNUC__ is defined, inline a test for an exact type match for
[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_ENCODE_RAW ##### -->
95 <para>
96 Encoding for nonbuffered IO. With this encoding, data must be
97 read using g_io_channel_read_chars(); the other functions will
98 not work.
99 </para>
100
101
102 <!-- ##### MACRO access ##### -->
103 <para>
104
105 </para>
106
107
108 <!-- ##### MACRO close ##### -->
109 <para>
110
111 </para>
112
113
114 <!-- ##### MACRO fdopen ##### -->
115 <para>
116
117 </para>
118
119
120 <!-- ##### FUNCTION g_channel_error_from_errno ##### -->
121 <para>
122
123 </para>
124
125 @en: 
126 @Returns: 
127
128 <!-- ##### FUNCTION g_channel_error_quark ##### -->
129 <para>
130
131 </para>
132
133 @Returns: 
134
135 <!-- ##### FUNCTION g_convert_error_quark ##### -->
136 <para>
137
138 </para>
139
140 @Returns: 
141
142 <!-- ##### FUNCTION g_main_add_poll ##### -->
143 <para>
144 Adds a file descriptor to be polled.
145 This is usually combined with g_source_add() to add an event source.
146 The event source's check function will typically test the revents
147 field in the #GPollFD struct and return TRUE if events need to be processed.
148 </para>
149
150 @fd: a #GPollFD, which is a file descriptor together with a bitwise
151 combination of #GIOCondition flags determining which events to poll for.
152 @priority: the priority of the poll, which should be the same as the priority
153 used for g_source_add() to ensure that the file descriptor is polled whenever
154 the results may be needed.
155 See #G_PRIORITY_DEFAULT, #G_PRIORITY_DEFAULT_IDLE, #G_PRIORITY_HIGH,
156 #G_PRIORITY_HIGH_IDLE, and #G_PRIORITY_LOW.
157
158 <!-- ##### FUNCTION g_main_context_get ##### -->
159 <para>
160
161 </para>
162
163 @thread: 
164 @Returns: 
165
166 <!-- ##### FUNCTION g_main_loop_destroy ##### -->
167 <para>
168
169 </para>
170
171 @loop: 
172
173 <!-- ##### FUNCTION g_main_remove_poll ##### -->
174 <para>
175 Removes a file descriptor from the list being polled.
176 </para>
177
178 @fd: the #GPollFD to remove.
179
180 <!-- ##### FUNCTION g_main_win32_get_poll_func ##### -->
181 <para>
182
183 </para>
184
185 @Returns: 
186
187 <!-- ##### FUNCTION g_mem_check ##### -->
188 <para>
189 Checks if the given memory has already been freed. If it has it outputs
190 a warning message.
191 To use this function you must configure glib with the flag
192 '--enable-mem-check=yes' before compiling.
193 </para>
194
195 @mem: the memory to check.
196
197 <!-- ##### FUNCTION g_scanner_stat_mode ##### -->
198 <para>
199 Gets the file attributes.
200 This is the <structfield>st_mode</structfield> field from the
201 <structname>stat</structname> structure. See the <function>stat()</function>
202 documentation.
203 </para>
204
205 @filename: the file name.
206 @Returns: the file attributes.
207
208 <!-- ##### FUNCTION g_source_add ##### -->
209 <para>
210 </para>
211
212 @priority: 
213 @can_recurse: 
214 @funcs: 
215 @source_data: 
216 @user_data: 
217 @notify: 
218 @Returns: 
219 @source: 
220 @context: 
221
222 <!-- ##### FUNCTION g_source_connect ##### -->
223 <para>
224
225 </para>
226
227 @source: 
228 @func: 
229 @data: 
230 @notify: 
231
232 <!-- ##### FUNCTION g_source_connect_indirect ##### -->
233 <para>
234
235 </para>
236
237 @source: 
238 @callback_data: 
239 @callback_funcs: 
240
241 <!-- ##### FUNCTION g_source_remove_by_source_data ##### -->
242 <para>
243 Removes the first event source found with the given source data.
244 </para>
245 <para>
246 Event sources are sorted with the highest priority first. Sources with equal
247 priority are stored in the order in which they were added.
248 </para>
249
250 @source_data: the source data, which contains information specific to the
251 type of source.
252 @Returns: TRUE if an event source was found and removed.
253
254 <!-- ##### FUNCTION g_static_private_get_for_thread ##### -->
255 <para>
256
257 </para>
258
259 @private_key: 
260 @thread: 
261 @Returns: 
262
263 <!-- ##### FUNCTION g_static_private_set_for_thread ##### -->
264 <para>
265
266 </para>
267
268 @private_key: 
269 @thread: 
270 @data: 
271 @notify: 
272
273 <!-- ##### MACRO g_string ##### -->
274 <para>
275 Turns the argument into a string literal by using the '#' stringizing operator.
276 </para>
277
278 @x: text to convert to a literal string.
279
280 <!-- ##### MACRO getcwd ##### -->
281 <para>
282
283 </para>
284
285
286 <!-- ##### MACRO getpid ##### -->
287 <para>
288
289 </para>
290
291
292 <!-- ##### MACRO lseek ##### -->
293 <para>
294
295 </para>
296
297
298 <!-- ##### MACRO open ##### -->
299 <para>
300
301 </para>
302
303
304 <!-- ##### MACRO pclose ##### -->
305 <para>
306
307 </para>
308
309
310 <!-- ##### MACRO popen ##### -->
311 <para>
312
313 </para>
314
315
316 <!-- ##### MACRO read ##### -->
317 <para>
318
319 </para>
320
321
322 <!-- ##### MACRO write ##### -->
323 <para>
324
325 </para>
326
327