error_in           36 ext/opcache/shared_alloc_mmap.c static int create_segments(size_t requested_size, zend_shared_segment ***shared_segments_p, int *shared_segments_count, char **error_in)
error_in           43 ext/opcache/shared_alloc_mmap.c 		*error_in = "calloc";
error_in           67 ext/opcache/shared_alloc_mmap.c 		*error_in = "mmap";
error_in           39 ext/opcache/shared_alloc_posix.c static int create_segments(size_t requested_size, zend_shared_segment_posix ***shared_segments_p, int *shared_segments_count, char **error_in)
error_in           47 ext/opcache/shared_alloc_posix.c 		*error_in = "calloc";
error_in           56 ext/opcache/shared_alloc_posix.c 		*error_in = "shm_open";
error_in           61 ext/opcache/shared_alloc_posix.c 		*error_in = "ftruncate";
error_in           68 ext/opcache/shared_alloc_posix.c 		*error_in = "mmap";
error_in           54 ext/opcache/shared_alloc_shm.c static int create_segments(size_t requested_size, zend_shared_segment_shm ***shared_segments_p, int *shared_segments_count, char **error_in)
error_in           85 ext/opcache/shared_alloc_shm.c 		*error_in = "shmget";
error_in           92 ext/opcache/shared_alloc_shm.c 		*error_in = "calloc";
error_in          115 ext/opcache/shared_alloc_shm.c 			*error_in = "shmat";
error_in          126 ext/opcache/shared_alloc_win32.c static int zend_shared_alloc_reattach(size_t requested_size, char **error_in)
error_in          138 ext/opcache/shared_alloc_win32.c 		*error_in="fopen";
error_in          144 ext/opcache/shared_alloc_win32.c 		*error_in="read mapping base";
error_in          198 ext/opcache/shared_alloc_win32.c static int create_segments(size_t requested_size, zend_shared_segment ***shared_segments_p, int *shared_segments_count, char **error_in)
error_in          227 ext/opcache/shared_alloc_win32.c 		ret =  zend_shared_alloc_reattach(requested_size, error_in);
error_in          248 ext/opcache/shared_alloc_win32.c 		*error_in = "OpenFileMapping";
error_in          258 ext/opcache/shared_alloc_win32.c 		*error_in = "calloc";
error_in          270 ext/opcache/shared_alloc_win32.c 		*error_in = "CreateFileMapping";
error_in          305 ext/opcache/shared_alloc_win32.c 		*error_in = "MapViewOfFile";
error_in          121 ext/opcache/zend_shared_alloc.c static int zend_shared_alloc_try(const zend_shared_memory_handler_entry *he, size_t requested_size, zend_shared_segment ***shared_segments_p, int *shared_segments_count, char **error_in)
error_in          129 ext/opcache/zend_shared_alloc.c 	res = S_H(create_segments)(requested_size, shared_segments_p, shared_segments_count, error_in);
error_in          155 ext/opcache/zend_shared_alloc.c 	char *error_in = NULL;
error_in          177 ext/opcache/zend_shared_alloc.c 				res = zend_shared_alloc_try(he, requested_size, &ZSMMG(shared_segments), &ZSMMG(shared_segments_count), &error_in);
error_in          199 ext/opcache/zend_shared_alloc.c 			res = zend_shared_alloc_try(he, requested_size, &ZSMMG(shared_segments), &ZSMMG(shared_segments_count), &error_in);
error_in          208 ext/opcache/zend_shared_alloc.c 		no_memory_bailout(requested_size, error_in);
error_in           79 ext/opcache/zend_shared_alloc.h typedef int (*create_segments_t)(size_t requested_size, zend_shared_segment ***shared_segments, int *shared_segment_count, char **error_in);