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           51 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          168 ext/opcache/shared_alloc_win32.c static int zend_shared_alloc_reattach(size_t requested_size, char **error_in)
error_in          180 ext/opcache/shared_alloc_win32.c 		*error_in="fopen";
error_in          186 ext/opcache/shared_alloc_win32.c 		*error_in="read mapping base";
error_in          216 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          246 ext/opcache/shared_alloc_win32.c 		ret =  zend_shared_alloc_reattach(requested_size, error_in);
error_in          267 ext/opcache/shared_alloc_win32.c 		*error_in = "OpenFileMapping";
error_in          277 ext/opcache/shared_alloc_win32.c 		*error_in = "calloc";
error_in          289 ext/opcache/shared_alloc_win32.c 		*error_in = "CreateFileMapping";
error_in          346 ext/opcache/shared_alloc_win32.c 		*error_in = "MapViewOfFile";
error_in          122 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          130 ext/opcache/zend_shared_alloc.c 	res = S_H(create_segments)(requested_size, shared_segments_p, shared_segments_count, error_in);
error_in          156 ext/opcache/zend_shared_alloc.c 	char *error_in = NULL;
error_in          179 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          196 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          205 ext/opcache/zend_shared_alloc.c 		no_memory_bailout(requested_size, error_in);
error_in           78 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);