Lines Matching refs:use

23 Streams use a php_stream* parameter just as ANSI stdio (fread etc.) use a
47 In most cases, you should use this API:
56 IGNORE_PATH (default) - don't use include path to search for the file
57 USE_PATH - use include path to search for the file
58 IGNORE_URL - do not use plugin wrappers
63 file/URL, use this option to arrange for the stream
112 This function will try to use mmap where available to make the copying more
116 you should use:
126 As with copy_to_stream, this function will try use mmap where it can.
129 can use this function to copy the contents into a new stream that can
149 only makes sense to use this for read-only use.
158 NOTE: If you are opening a stream and need it to be seekable, use the
191 If you ask a socket stream for a FILE*, the abstraction will use fdopen to
200 to see if it naturally supports FILE *. You can use this code snippet
207 You can use:
212 to check if a stream is a socket you might use:
263 A socket based stream would use code similar to that above to create a stream
274 bufsize is the size of the buffer to use - if 0, then buffering at the stream
294 down allocation problems. It will also help you spot incorrect use of the
299 RULE #2: Please use the stdio stream as a reference; it will help you
308 The stream has a field called abstract that you can use to hold this data.
310 hold it, allocate it (use pemalloc with the persistent flag set
311 appropriately), and use the abstract pointer to refer to it.
374 the example above, you need to use mysql_free_result on the rowset, close the
375 connection and then use pefree to dispose of the struct you allocated.