pool              147 mod_freetdm/mod_freetdm.c 													switch_memory_pool_t **pool,
pool             1141 mod_freetdm/mod_freetdm.c 													switch_core_session_t **new_session, switch_memory_pool_t **pool,
pool             1171 mod_freetdm/mod_freetdm.c 	data = switch_core_strdup(outbound_profile->pool, outbound_profile->destination_number);
pool             1174 mod_freetdm/mod_freetdm.c 		dest_num = switch_sanitize_number(switch_core_strdup(outbound_profile->pool, outbound_profile->destination_number));
pool             1178 mod_freetdm/mod_freetdm.c 		callerid_num = switch_sanitize_number(switch_core_strdup(outbound_profile->pool, outbound_profile->caller_id_number));
pool             1397 mod_freetdm/mod_freetdm.c 	if ((*new_session = switch_core_session_request(freetdm_endpoint_interface, SWITCH_CALL_DIRECTION_OUTBOUND, flags, pool)) != 0) {
pool             1410 mod_freetdm/mod_freetdm.c 		caller_profile->destination_number = switch_core_strdup(caller_profile->pool, switch_str_nil(dest_num));
pool             1411 mod_freetdm/mod_freetdm.c 		caller_profile->caller_id_number = switch_core_strdup(caller_profile->pool, switch_str_nil(callerid_num));
pool             4169 mod_freetdm/mod_freetdm.c 	module_pool = pool;
pool             4192 mod_freetdm/mod_freetdm.c 	*module_interface = switch_loadable_module_create_module_interface(pool, modname);
pool              376 src/ftdm_io.c  static __inline__ void *ftdm_std_malloc(void *pool, ftdm_size_t size)
pool              379 src/ftdm_io.c  	pool = NULL; /* fix warning */
pool              384 src/ftdm_io.c  static __inline__ void *ftdm_std_calloc(void *pool, ftdm_size_t elements, ftdm_size_t size)
pool              387 src/ftdm_io.c  	pool = NULL;
pool              392 src/ftdm_io.c  static __inline__ void *ftdm_std_realloc(void *pool, void *buff, ftdm_size_t size)
pool              395 src/ftdm_io.c  	pool = NULL;
pool              400 src/ftdm_io.c  static __inline__ void ftdm_std_free(void *pool, void *ptr)
pool              402 src/ftdm_io.c  	pool = NULL;
pool              327 src/ftmod/ftmod_sangoma_isdn/ftmod_sangoma_isdn_stack_cfg.c 	cfg.t.cfg.s.bdMSAP.mem.pool    = S_POOL;      /* Memory pool */
pool              430 src/ftmod/ftmod_sangoma_isdn/ftmod_sangoma_isdn_stack_cfg.c 	cfg.t.cfg.s.bdDLSAP.mem.pool	= S_POOL;			/* Memory pool */
pool              580 src/ftmod/ftmod_sangoma_isdn/ftmod_sangoma_isdn_stack_cfg.c 	cfg.t.cfg.s.inTSAP.mem.pool = S_POOL;
pool              801 src/ftmod/ftmod_sangoma_isdn/ftmod_sangoma_isdn_stack_cfg.c 	cfg.t.cfg.s.inDLSAP.mem.pool = S_POOL;
pool              997 src/ftmod/ftmod_sangoma_isdn/ftmod_sangoma_isdn_stack_cfg.c 	cfg.t.cfg.s.ccISAP.pst.pool			= S_POOL;
pool             1027 src/ftmod/ftmod_sangoma_isdn/ftmod_sangoma_isdn_stack_cfg.c 	pst->pool        = S_POOL;
pool             1049 src/ftmod/ftmod_sangoma_isdn/ftmod_sangoma_isdn_stack_cfg.c 	hdr->response.mem.pool      = S_POOL;
pool              373 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              658 src/include/freetdm.h typedef void *(*ftdm_malloc_func_t)(void *pool, ftdm_size_t len);
pool              659 src/include/freetdm.h typedef void *(*ftdm_calloc_func_t)(void *pool, ftdm_size_t elements, ftdm_size_t len);
pool              660 src/include/freetdm.h typedef void *(*ftdm_realloc_func_t)(void *pool, void *buff, ftdm_size_t len);
pool              661 src/include/freetdm.h typedef void (*ftdm_free_func_t)(void *pool, void *ptr);
pool              663 src/include/freetdm.h 	void *pool;
pool               87 src/include/ftdm_os.h #define ftdm_malloc(chunksize) g_ftdm_mem_handler.malloc(g_ftdm_mem_handler.pool, chunksize)
pool               94 src/include/ftdm_os.h #define ftdm_realloc(buff, chunksize) g_ftdm_mem_handler.realloc(g_ftdm_mem_handler.pool, buff, chunksize)
pool              100 src/include/ftdm_os.h #define ftdm_calloc(elements, chunksize) g_ftdm_mem_handler.calloc(g_ftdm_mem_handler.pool, elements, chunksize)
pool              106 src/include/ftdm_os.h #define ftdm_free(chunk) g_ftdm_mem_handler.free(g_ftdm_mem_handler.pool, chunk)