pool              147 mod_freetdm/mod_freetdm.c 													switch_memory_pool_t **pool,
pool             1054 mod_freetdm/mod_freetdm.c 													switch_core_session_t **new_session, switch_memory_pool_t **pool,
pool             1085 mod_freetdm/mod_freetdm.c 	data = switch_core_strdup(outbound_profile->pool, outbound_profile->destination_number);
pool             1088 mod_freetdm/mod_freetdm.c 		dest_num = switch_sanitize_number(switch_core_strdup(outbound_profile->pool, outbound_profile->destination_number));
pool             1092 mod_freetdm/mod_freetdm.c 		callerid_num = switch_sanitize_number(switch_core_strdup(outbound_profile->pool, outbound_profile->caller_id_number));
pool             1318 mod_freetdm/mod_freetdm.c 	if ((*new_session = switch_core_session_request(freetdm_endpoint_interface, SWITCH_CALL_DIRECTION_OUTBOUND, flags, pool)) != 0) {
pool             1341 mod_freetdm/mod_freetdm.c 		caller_profile->destination_number = switch_core_strdup(caller_profile->pool, switch_str_nil(dest_num));
pool             1342 mod_freetdm/mod_freetdm.c 		caller_profile->caller_id_number = switch_core_strdup(caller_profile->pool, switch_str_nil(callerid_num));
pool             4094 mod_freetdm/mod_freetdm.c 	module_pool = pool;
pool             4117 mod_freetdm/mod_freetdm.c 	*module_interface = switch_loadable_module_create_module_interface(pool, modname);
pool              216 src/ftdm_io.c  static __inline__ void *ftdm_std_malloc(void *pool, ftdm_size_t size)
pool              219 src/ftdm_io.c  	pool = NULL; /* fix warning */
pool              224 src/ftdm_io.c  static __inline__ void *ftdm_std_calloc(void *pool, ftdm_size_t elements, ftdm_size_t size)
pool              227 src/ftdm_io.c  	pool = NULL;
pool              232 src/ftdm_io.c  static __inline__ void *ftdm_std_realloc(void *pool, void *buff, ftdm_size_t size)
pool              235 src/ftdm_io.c  	pool = NULL;
pool              240 src/ftdm_io.c  static __inline__ void ftdm_std_free(void *pool, void *ptr)
pool              242 src/ftdm_io.c  	pool = NULL;
pool              341 src/ftmod/ftmod_sangoma_isdn/ftmod_sangoma_isdn_stack_cfg.c 	cfg.t.cfg.s.bdMSAP.mem.pool    = S_POOL;      /* Memory pool */
pool              444 src/ftmod/ftmod_sangoma_isdn/ftmod_sangoma_isdn_stack_cfg.c 	cfg.t.cfg.s.bdDLSAP.mem.pool	= S_POOL;			/* Memory pool */
pool              594 src/ftmod/ftmod_sangoma_isdn/ftmod_sangoma_isdn_stack_cfg.c 	cfg.t.cfg.s.inTSAP.mem.pool = S_POOL;
pool              806 src/ftmod/ftmod_sangoma_isdn/ftmod_sangoma_isdn_stack_cfg.c 	cfg.t.cfg.s.inDLSAP.mem.pool = S_POOL;
pool             1004 src/ftmod/ftmod_sangoma_isdn/ftmod_sangoma_isdn_stack_cfg.c     cfg.t.cfg.s.ccISAP.pst.pool			= S_POOL;
pool             1034 src/ftmod/ftmod_sangoma_isdn/ftmod_sangoma_isdn_stack_cfg.c     pst->pool        = S_POOL;
pool             1056 src/ftmod/ftmod_sangoma_isdn/ftmod_sangoma_isdn_stack_cfg.c     hdr->response.mem.pool      = S_POOL;
pool              338 src/ftmod/ftmod_sangoma_isdn/ftmod_sangoma_isdn_stack_cntrl.c 	hdr->response.mem.pool   = S_POOL;
pool              635 src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_cfg.c 	cfg.t.cfg.s.sdDLSAP.mem.pool		= S_POOL;					/* memory pool */
pool              647 src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_cfg.c 	cfg.t.cfg.s.sdDLSAP.memMac.pool		= S_POOL;
pool              775 src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_cfg.c 	cfg.t.cfg.s.snDLSAP.mem.pool		= S_POOL;				/* memory pool id */
pool              906 src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_cfg.c 	cfg.t.cfg.s.snNSAP.mem.pool		= S_POOL;			/* memory pool id */
pool             1116 src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_cfg.c 	cfg.t.cfg.s.siNSap.mem.pool		= S_POOL;
pool             1362 src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_cfg.c 	cfg.t.cfg.s.siSap.mem.pool				= S_POOL;					/* memory region & pool id */
pool             1457 src/ftmod/ftmod_sangoma_ss7/ftmod_sangoma_ss7_cfg.c 	cfg.t.cfg.s.ccISAP.pst.pool			= S_POOL;
pool              442 src/include/freetdm.h typedef void *(*ftdm_malloc_func_t)(void *pool, ftdm_size_t len);
pool              443 src/include/freetdm.h typedef void *(*ftdm_calloc_func_t)(void *pool, ftdm_size_t elements, ftdm_size_t len);
pool              444 src/include/freetdm.h typedef void *(*ftdm_realloc_func_t)(void *pool, void *buff, ftdm_size_t len);
pool              445 src/include/freetdm.h typedef void (*ftdm_free_func_t)(void *pool, void *ptr);
pool              447 src/include/freetdm.h 	void *pool;
pool               81 src/include/ftdm_os.h #define ftdm_malloc(chunksize) g_ftdm_mem_handler.malloc(g_ftdm_mem_handler.pool, chunksize)
pool               88 src/include/ftdm_os.h #define ftdm_realloc(buff, chunksize) g_ftdm_mem_handler.realloc(g_ftdm_mem_handler.pool, buff, chunksize)
pool               94 src/include/ftdm_os.h #define ftdm_calloc(elements, chunksize) g_ftdm_mem_handler.calloc(g_ftdm_mem_handler.pool, elements, chunksize)
pool              100 src/include/ftdm_os.h #define ftdm_free(chunk) g_ftdm_mem_handler.free(g_ftdm_mem_handler.pool, chunk)