Searched defs:mapped (Results 1 - 4 of 4) sorted by relevance
| /PHP_5_3/ext/fileinfo/libmagic/ |
| H A D | apprentice.c | 250 int mapped; local 279 mapped = rv; 282 file_delmagic(magic, mapped, nmagic); 290 ml->mapped = mapped;
|
| H A D | file.h | 335 int mapped; /* allocation type: 0 => apprentice_file member in struct:mlist
|
| /PHP_5_3/main/streams/ |
| H A D | php_stream_mmap.h | 33 /* Request a range and offset to be mapped; 34 * while mapped, you MUST NOT use any read/write functions 37 /* Unmap the last range that was mapped for the stream */ 50 * If length is 0, the whole file is mapped */ 56 /* returned mapped address */ 57 char *mapped; member in struct:__anon264 65 /* Returns 1 if the stream in its current state can be memory mapped, 73 /* un-maps the last mapped range */
|
| H A D | streams.c | 1328 size_t mapped; local 1330 p = php_stream_mmap_range(stream, php_stream_tell(stream), PHP_STREAM_MMAP_ALL, PHP_STREAM_MAP_MODE_SHARED_READONLY, &mapped); 1333 PHPWRITE(p, mapped); 1335 php_stream_mmap_unmap_ex(stream, mapped); 1337 return mapped; 1456 size_t mapped; local 1458 p = php_stream_mmap_range(src, php_stream_tell(src), maxlen, PHP_STREAM_MAP_MODE_SHARED_READONLY, &mapped); 1461 mapped = php_stream_write(dest, p, mapped); 1463 php_stream_mmap_unmap_ex(src, mapped); [all...] |
Completed in 10 milliseconds