Lines Matching refs:use

18 Streams use a `php_stream*` parameter just as ANSI stdio (fread etc.) use a
45 In most cases, you should use this API:
57 * `IGNORE_PATH` (default) - don't use include path to search for the file
58 * `USE_PATH` - use include path to search for the file
59 * `IGNORE_URL` - do not use plugin wrappers
62 don't need to be able to write to the original file/URL, use this option to
113 number of bytes to copy. This function will try to use mmap where available to
117 you should use:
128 memory when you are done. As with `copy_to_stream`, this function will try use
131 If you have an existing stream and need to be able to `seek()` it, you can use
155 sense to use this for read-only use.
164 NOTE: If you are opening a stream and need it to be seekable, use the
206 If you ask a socket stream for a `FILE*`, the abstraction will use fdopen to
215 it naturally supports `FILE *`. You can use this code snippet for this purpose:
223 You can use:
230 check if a stream is a socket you might use:
284 A socket based stream would use code similar to that above to create a stream to
297 * `bufsize` is the size of the buffer to use - if 0, then buffering at the
316 help track down allocation problems. It will also help you spot incorrect use
320 * RULE #2: Please use the stdio stream as a reference; it will help you
329 The stream has a field called abstract that you can use to hold this data. If
331 it, allocate it (use pemalloc with the persistent flag set appropriately), and
332 use the abstract pointer to refer to it.
402 example above, you need to use mysql_free_result on the rowset, close the
403 connection and then use pefree to dispose of the struct you allocated. You may