Home | History | Annotate | Download | only in acpisrc

Lines Matching refs:Buffer

165     char                    *Buffer,
169 while (*Buffer != Target)
171 if (!*Buffer)
176 Buffer++;
179 return (Buffer);
187 * DESCRIPTION: Find the next instance of the input character, return a buffer
194 char *Buffer,
198 while (*Buffer != Target)
200 if (!*Buffer)
205 Buffer++;
208 Buffer++;
209 return (Buffer);
217 * DESCRIPTION: This function inserts and removes data from the file buffer.
218 * if more data is inserted than is removed, the data in the buffer
226 char *Buffer,
235 * Buffer is a string, so the length must include the terminating zero
237 BufferLength = strlen (Buffer) + 1;
247 memmove ((Buffer + LengthToAdd), (Buffer + LengthToRemove),
257 memmove (Buffer, BufferToAdd, LengthToAdd);
260 return (Buffer + LengthToAdd);
268 * DESCRIPTION: This function inserts and removes data from the file buffer.
269 * if more data is inserted than is removed, the data in the buffer
277 char *Buffer,
287 * Buffer is a string, so the length must include the terminating zero
289 BufferLength = strlen (Buffer) + 1;
297 memmove ((Buffer + LengthToAdd), Buffer, BufferLength);
302 memmove (Buffer, BufferToAdd, LengthToAdd);
305 return (Buffer + LengthToAdd);
313 * DESCRIPTION: This function inserts and removes data from the file buffer.
314 * if more data is inserted than is removed, the data in the buffer
329 * Buffer is a string, so the length must include the terminating zero