CUBRID Engine  latest
malloc_2_8_3.c File Reference
#include <sys/types.h>
#include <stdio.h>
#include <errno.h>
#include <stdlib.h>
#include <string.h>
#include <sys/mman.h>
#include <fcntl.h>
#include <sys/param.h>
#include <unistd.h>
Include dependency graph for malloc_2_8_3.c:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

struct  mallinfo
 
struct  malloc_chunk
 
struct  malloc_tree_chunk
 
struct  malloc_segment
 
struct  malloc_state
 
struct  malloc_params
 

Macros

#define MAX_SIZE_T   (~(size_t)0)
 
#define ONLY_MSPACES   0
 
#define MSPACES   0
 
#define MALLOC_ALIGNMENT   ((size_t)8U)
 
#define FOOTERS   0
 
#define ABORT   abort()
 
#define ABORT_ON_ASSERT_FAILURE   1
 
#define PROCEED_ON_ERROR   0
 
#define USE_LOCKS   0
 
#define INSECURE   0
 
#define HAVE_MMAP   1
 
#define MMAP_CLEARS   1
 
#define HAVE_MREMAP   0
 
#define MALLOC_FAILURE_ACTION   errno = ENOMEM;
 
#define HAVE_MORECORE   1
 
#define MORECORE   sbrk
 
#define MORECORE_CONTIGUOUS   1
 
#define DEFAULT_GRANULARITY   (0) /* 0 means to compute in init_mparams */
 
#define DEFAULT_TRIM_THRESHOLD   ((size_t)2U * (size_t)1024U * (size_t)1024U)
 
#define DEFAULT_MMAP_THRESHOLD   ((size_t)256U * (size_t)1024U)
 
#define USE_BUILTIN_FFS   0
 
#define USE_DEV_RANDOM   0
 
#define NO_MALLINFO   0
 
#define MALLINFO_FIELD_TYPE   size_t
 
#define M_TRIM_THRESHOLD   (-1)
 
#define M_GRANULARITY   (-2)
 
#define M_MMAP_THRESHOLD   (-3)
 
#define dlcalloc   calloc
 
#define dlfree   free
 
#define dlmalloc   malloc
 
#define dlmemalign   memalign
 
#define dlrealloc   realloc
 
#define dlvalloc   valloc
 
#define dlpvalloc   pvalloc
 
#define dlmallinfo   mallinfo
 
#define dlmallopt   mallopt
 
#define dlmalloc_trim   malloc_trim
 
#define dlmalloc_stats   malloc_stats
 
#define dlmalloc_usable_size   malloc_usable_size
 
#define dlmalloc_footprint   malloc_footprint
 
#define dlmalloc_max_footprint   malloc_max_footprint
 
#define dlindependent_calloc   independent_calloc
 
#define dlindependent_comalloc   independent_comalloc
 
#define assert(x)
 
#define malloc_getpagesize   ((size_t)4096U)
 
#define SIZE_T_SIZE   (sizeof(size_t))
 
#define SIZE_T_BITSIZE   (sizeof(size_t) << 3)
 
#define SIZE_T_ZERO   ((size_t)0)
 
#define SIZE_T_ONE   ((size_t)1)
 
#define SIZE_T_TWO   ((size_t)2)
 
#define TWO_SIZE_T_SIZES   (SIZE_T_SIZE<<1)
 
#define FOUR_SIZE_T_SIZES   (SIZE_T_SIZE<<2)
 
#define SIX_SIZE_T_SIZES   (FOUR_SIZE_T_SIZES+TWO_SIZE_T_SIZES)
 
#define HALF_MAX_SIZE_T   (MAX_SIZE_T / 2U)
 
#define CHUNK_ALIGN_MASK   (MALLOC_ALIGNMENT - SIZE_T_ONE)
 
#define is_aligned(A)   (((size_t)((A)) & (CHUNK_ALIGN_MASK)) == 0)
 
#define align_offset(A)
 
#define MFAIL   ((void*)(MAX_SIZE_T))
 
#define CMFAIL   ((char*)(MFAIL)) /* defined for convenience */
 
#define IS_MMAPPED_BIT   (SIZE_T_ONE)
 
#define USE_MMAP_BIT   (SIZE_T_ONE)
 
#define USE_MALLOC_INSTEAD   0
 
#define CALL_MUNMAP(a, s)   munmap((a), (s))
 
#define MMAP_PROT   (PROT_READ|PROT_WRITE)
 
#define MMAP_FLAGS   (MAP_PRIVATE)
 
#define CALL_MMAP(s)
 
#define DIRECT_MMAP(s)   CALL_MMAP(s)
 
#define CALL_MREMAP(addr, osz, nsz, mv)   MFAIL
 
#define CALL_MORECORE(S)   MORECORE(S)
 
#define USE_NONCONTIGUOUS_BIT   (4U)
 
#define EXTERN_BIT   (8U)
 
#define USE_LOCK_BIT   (0U)
 
#define INITIAL_LOCK(l)
 
#define ACQUIRE_MORECORE_LOCK()
 
#define RELEASE_MORECORE_LOCK()
 
#define ACQUIRE_MAGIC_INIT_LOCK()
 
#define RELEASE_MAGIC_INIT_LOCK()
 
#define MCHUNK_SIZE   (sizeof(mchunk))
 
#define CHUNK_OVERHEAD   (SIZE_T_SIZE)
 
#define MMAP_CHUNK_OVERHEAD   (TWO_SIZE_T_SIZES)
 
#define MMAP_FOOT_PAD   (FOUR_SIZE_T_SIZES)
 
#define MIN_CHUNK_SIZE   ((MCHUNK_SIZE + CHUNK_ALIGN_MASK) & ~CHUNK_ALIGN_MASK)
 
#define chunk2mem(p)   ((void*)((char*)(p) + TWO_SIZE_T_SIZES))
 
#define mem2chunk(mem)   ((mchunkptr)((char*)(mem) - TWO_SIZE_T_SIZES))
 
#define align_as_chunk(A)   (mchunkptr)((A) + align_offset(chunk2mem(A)))
 
#define MAX_REQUEST   ((-MIN_CHUNK_SIZE) << 2)
 
#define MIN_REQUEST   (MIN_CHUNK_SIZE - CHUNK_OVERHEAD - SIZE_T_ONE)
 
#define pad_request(req)   (((req) + CHUNK_OVERHEAD + CHUNK_ALIGN_MASK) & ~CHUNK_ALIGN_MASK)
 
#define request2size(req)   (((req) < MIN_REQUEST)? MIN_CHUNK_SIZE : pad_request(req))
 
#define PINUSE_BIT   (SIZE_T_ONE)
 
#define CINUSE_BIT   (SIZE_T_TWO)
 
#define INUSE_BITS   (PINUSE_BIT|CINUSE_BIT)
 
#define FENCEPOST_HEAD   (INUSE_BITS|SIZE_T_SIZE)
 
#define cinuse(p)   ((p)->head & CINUSE_BIT)
 
#define pinuse(p)   ((p)->head & PINUSE_BIT)
 
#define chunksize(p)   ((p)->head & ~(INUSE_BITS))
 
#define clear_pinuse(p)   ((p)->head &= ~PINUSE_BIT)
 
#define clear_cinuse(p)   ((p)->head &= ~CINUSE_BIT)
 
#define chunk_plus_offset(p, s)   ((mchunkptr)(((char*)(p)) + (s)))
 
#define chunk_minus_offset(p, s)   ((mchunkptr)(((char*)(p)) - (s)))
 
#define next_chunk(p)   ((mchunkptr)( ((char*)(p)) + ((p)->head & ~INUSE_BITS)))
 
#define prev_chunk(p)   ((mchunkptr)( ((char*)(p)) - ((p)->prev_foot) ))
 
#define next_pinuse(p)   ((next_chunk(p)->head) & PINUSE_BIT)
 
#define get_foot(p, s)   (((mchunkptr)((char*)(p) + (s)))->prev_foot)
 
#define set_foot(p, s)   (((mchunkptr)((char*)(p) + (s)))->prev_foot = (s))
 
#define set_size_and_pinuse_of_free_chunk(p, s)   ((p)->head = (s|PINUSE_BIT), set_foot(p, s))
 
#define set_free_with_pinuse(p, s, n)   (clear_pinuse(n), set_size_and_pinuse_of_free_chunk(p, s))
 
#define is_mmapped(p)   (!((p)->head & PINUSE_BIT) && ((p)->prev_foot & IS_MMAPPED_BIT))
 
#define overhead_for(p)   (is_mmapped(p)? MMAP_CHUNK_OVERHEAD : CHUNK_OVERHEAD)
 
#define calloc_must_clear(p)   (!is_mmapped(p))
 
#define leftmost_child(t)   ((t)->child[0] != 0? (t)->child[0] : (t)->child[1])
 
#define is_mmapped_segment(S)   ((S)->sflags & IS_MMAPPED_BIT)
 
#define is_extern_segment(S)   ((S)->sflags & EXTERN_BIT)
 
#define NSMALLBINS   (32U)
 
#define NTREEBINS   (32U)
 
#define SMALLBIN_SHIFT   (3U)
 
#define SMALLBIN_WIDTH   (SIZE_T_ONE << SMALLBIN_SHIFT)
 
#define TREEBIN_SHIFT   (8U)
 
#define MIN_LARGE_SIZE   (SIZE_T_ONE << TREEBIN_SHIFT)
 
#define MAX_SMALL_SIZE   (MIN_LARGE_SIZE - SIZE_T_ONE)
 
#define MAX_SMALL_REQUEST   (MAX_SMALL_SIZE - CHUNK_ALIGN_MASK - CHUNK_OVERHEAD)
 
#define gm   (&_gm_)
 
#define is_global(M)   ((M) == &_gm_)
 
#define is_initialized(M)   ((M)->top != 0)
 
#define use_lock(M)   ((M)->mflags & USE_LOCK_BIT)
 
#define enable_lock(M)   ((M)->mflags |= USE_LOCK_BIT)
 
#define disable_lock(M)   ((M)->mflags &= ~USE_LOCK_BIT)
 
#define use_mmap(M)   ((M)->mflags & USE_MMAP_BIT)
 
#define enable_mmap(M)   ((M)->mflags |= USE_MMAP_BIT)
 
#define disable_mmap(M)   ((M)->mflags &= ~USE_MMAP_BIT)
 
#define use_noncontiguous(M)   ((M)->mflags & USE_NONCONTIGUOUS_BIT)
 
#define disable_contiguous(M)   ((M)->mflags |= USE_NONCONTIGUOUS_BIT)
 
#define set_lock(M, L)
 
#define page_align(S)   (((S) + (mparams.page_size)) & ~(mparams.page_size - SIZE_T_ONE))
 
#define granularity_align(S)   (((S) + (mparams.granularity)) & ~(mparams.granularity - SIZE_T_ONE))
 
#define is_page_aligned(S)   (((size_t)(S) & (mparams.page_size - SIZE_T_ONE)) == 0)
 
#define is_granularity_aligned(S)   (((size_t)(S) & (mparams.granularity - SIZE_T_ONE)) == 0)
 
#define segment_holds(S, A)   ((char*)(A) >= S->base && (char*)(A) < S->base + S->size)
 
#define should_trim(M, s)   ((s) > (M)->trim_check)
 
#define TOP_FOOT_SIZE   (align_offset(chunk2mem(0))+pad_request(sizeof(struct malloc_segment))+MIN_CHUNK_SIZE)
 
#define PREACTION(M)   (0)
 
#define POSTACTION(M)
 
#define CORRUPTION_ERROR_ACTION(m)   ABORT
 
#define USAGE_ERROR_ACTION(m, p)   ABORT
 
#define check_free_chunk(M, P)
 
#define check_inuse_chunk(M, P)
 
#define check_malloced_chunk(M, P, N)
 
#define check_mmapped_chunk(M, P)
 
#define check_malloc_state(M)
 
#define check_top_chunk(M, P)
 
#define is_small(s)   (((s) >> SMALLBIN_SHIFT) < NSMALLBINS)
 
#define small_index(s)   ((s) >> SMALLBIN_SHIFT)
 
#define small_index2size(i)   ((i) << SMALLBIN_SHIFT)
 
#define MIN_SMALL_INDEX   (small_index(MIN_CHUNK_SIZE))
 
#define smallbin_at(M, i)   ((sbinptr)((char*)&((M)->smallbins[(i)<<1])))
 
#define treebin_at(M, i)   (&((M)->treebins[i]))
 
#define compute_tree_index(S, I)
 
#define bit_for_tree_index(i)   (i == NTREEBINS-1)? (SIZE_T_BITSIZE-1) : (((i) >> 1) + TREEBIN_SHIFT - 2)
 
#define leftshift_for_tree_index(i)
 
#define minsize_for_tree_index(i)
 
#define idx2bit(i)   ((binmap_t)(1) << (i))
 
#define mark_smallmap(M, i)   ((M)->smallmap |= idx2bit(i))
 
#define clear_smallmap(M, i)   ((M)->smallmap &= ~idx2bit(i))
 
#define smallmap_is_marked(M, i)   ((M)->smallmap & idx2bit(i))
 
#define mark_treemap(M, i)   ((M)->treemap |= idx2bit(i))
 
#define clear_treemap(M, i)   ((M)->treemap &= ~idx2bit(i))
 
#define treemap_is_marked(M, i)   ((M)->treemap & idx2bit(i))
 
#define compute_bit2idx(X, I)
 
#define least_bit(x)   ((x) & -(x))
 
#define left_bits(x)   ((x<<1) | -(x<<1))
 
#define same_or_left_bits(x)   ((x) | -(x))
 
#define ok_address(M, a)   ((char*)(a) >= (M)->least_addr)
 
#define ok_next(p, n)   ((char*)(p) < (char*)(n))
 
#define ok_cinuse(p)   cinuse(p)
 
#define ok_pinuse(p)   pinuse(p)
 
#define ok_magic(M)   (1)
 
#define RTCHECK(e)   (e)
 
#define mark_inuse_foot(M, p, s)
 
#define set_inuse(M, p, s)
 
#define set_inuse_and_pinuse(M, p, s)
 
#define set_size_and_pinuse_of_inuse_chunk(M, p, s)   ((p)->head = (s|PINUSE_BIT|CINUSE_BIT))
 
#define insert_small_chunk(M, P, S)
 
#define unlink_small_chunk(M, P, S)
 
#define unlink_first_small_chunk(M, B, P, I)
 
#define replace_dv(M, P, S)
 
#define insert_large_chunk(M, X, S)
 
#define unlink_large_chunk(M, X)
 
#define insert_chunk(M, P, S)
 
#define unlink_chunk(M, P, S)
 
#define internal_malloc(m, b)   dlmalloc(b)
 
#define internal_free(m, mem)   dlfree(mem)
 
#define fm   gm
 

Typedefs

typedef struct malloc_chunk mchunk
 
typedef struct malloc_chunkmchunkptr
 
typedef struct malloc_chunksbinptr
 
typedef unsigned int bindex_t
 
typedef unsigned int binmap_t
 
typedef unsigned int flag_t
 
typedef struct malloc_tree_chunk tchunk
 
typedef struct malloc_tree_chunktchunkptr
 
typedef struct malloc_tree_chunktbinptr
 
typedef struct malloc_segment msegment
 
typedef struct malloc_segmentmsegmentptr
 
typedef struct malloc_statemstate
 

Functions

void * dlmalloc (size_t)
 
void dlfree (void *)
 
void * dlcalloc (size_t, size_t)
 
void * dlrealloc (void *, size_t)
 
void * dlmemalign (size_t, size_t)
 
void * dlvalloc (size_t)
 
int dlmallopt (int, int)
 
size_t dlmalloc_footprint (void)
 
size_t dlmalloc_max_footprint (void)
 
struct mallinfo dlmallinfo (void)
 
void ** dlindependent_calloc (size_t, size_t, void **)
 
void ** dlindependent_comalloc (size_t, size_t *, void **)
 
void * dlpvalloc (size_t)
 
int dlmalloc_trim (size_t)
 
size_t dlmalloc_usable_size (void *)
 
void dlmalloc_stats (void)
 
static msegmentptr segment_holding (mstate m, char *addr)
 
static int has_segment_link (mstate m, msegmentptr ss)
 
static int init_mparams (void)
 
static int change_mparam (int param_number, int value)
 
static struct mallinfo internal_mallinfo (mstate m)
 
static void internal_malloc_stats (mstate m)
 
static void * mmap_alloc (mstate m, size_t nb)
 
static mchunkptr mmap_resize (mstate m, mchunkptr oldp, size_t nb)
 
static void init_top (mstate m, mchunkptr p, size_t psize)
 
static void init_bins (mstate m)
 
static void * prepend_alloc (mstate m, char *newbase, char *oldbase, size_t nb)
 
static void add_segment (mstate m, char *tbase, size_t tsize, flag_t mmapped)
 
static void * sys_alloc (mstate m, size_t nb)
 
static size_t release_unused_segments (mstate m)
 
static int sys_trim (mstate m, size_t pad)
 
static void * tmalloc_large (mstate m, size_t nb)
 
static void * tmalloc_small (mstate m, size_t nb)
 
static void * internal_realloc (mstate m, void *oldmem, size_t bytes)
 
static void * internal_memalign (mstate m, size_t alignment, size_t bytes)
 
static void ** ialloc (mstate m, size_t n_elements, size_t *sizes, int opts, void *chunks[])
 
void ** dlindependent_calloc (size_t n_elements, size_t elem_size, void *chunks[])
 
void ** dlindependent_comalloc (size_t n_elements, size_t sizes[], void *chunks[])
 

Variables

static int dev_zero_fd = -1
 
static struct malloc_params mparams
 
static struct malloc_state _gm_
 

Macro Definition Documentation

#define ABORT   abort()

Definition at line 530 of file malloc_2_8_3.c.

Referenced by init_mparams().

#define ABORT_ON_ASSERT_FAILURE   1

Definition at line 533 of file malloc_2_8_3.c.

#define ACQUIRE_MAGIC_INIT_LOCK ( )

Definition at line 1516 of file malloc_2_8_3.c.

Referenced by init_mparams().

#define ACQUIRE_MORECORE_LOCK ( )

Definition at line 1508 of file malloc_2_8_3.c.

Referenced by sys_alloc(), and sys_trim().

#define align_as_chunk (   A)    (mchunkptr)((A) + align_offset(chunk2mem(A)))
#define align_offset (   A)
Value:
((((size_t)(A) & CHUNK_ALIGN_MASK) == 0)? 0 :\
#define CHUNK_ALIGN_MASK
#define MALLOC_ALIGNMENT
Definition: malloc_2_8_3.c:524

Definition at line 1302 of file malloc_2_8_3.c.

Referenced by add_segment(), init_top(), and mmap_alloc().

#define assert (   x)

Definition at line 1204 of file malloc_2_8_3.c.

Referenced by _DEFUN(), _er_log_debug(), abort_handler(), access_control_check_ip(), access_object(), acquire_locks_for_multiple_rename(), tx_transient_class_registry::add(), add_access_spec(), add_arg_domain(), string_buffer::add_bytes(), add_class_grant(), add_deferred_activities(), multi_index_unique_stats::add_empty(), add_fk_info_after(), add_fk_info_before(), add_fk_info_result(), add_foreign_key(), multi_index_unique_stats::add_index_stats(), add_key_to_weight_stats_list(), mvcc_active_tran::add_long_transaction(), log_postpone_cache::add_lsa(), add_method_internal(), add_opt_coll_contraction(), log_postpone_cache::add_redo_data(), add_resolution(), add_segment(), add_uca_contr_or_exp(), add_xml_element(), adj_ar_append(), adj_ar_get_buffer(), adj_ar_initialize(), adj_ar_insert(), adj_ar_length(), adj_ar_remove(), adj_ar_replace(), adj_ar_reset(), admin_conf_change(), admin_reset_cmd(), aes_default_gen_key(), ai_api_check(), ai_api_destroy(), ai_api_get(), ai_api_length(), ai_api_map(), ai_api_set(), cubthread::manager::alloc_entries(), cubmem::single_block_allocator::allocate(), allocate_disk_structures(), allocate_disk_structures_index(), allocate_foreign_key(), allocate_unique_constraint(), alter_trigger_cache(), annotate_method_files(), api_calloc(), api_malloc(), api_object_resultset_pool_create(), api_ores_clear_updates(), api_ores_delete_row(), api_ores_destroy(), api_ores_fetch(), api_ores_get_resultset_metadata(), api_ores_get_value(), api_ores_get_value_by_name(), api_ores_tell(), api_ormeta_get_count(), api_ormeta_get_info(), api_qres_clear_updates(), api_qres_fetch(), api_qres_get_resultset_metadata(), api_qres_get_value(), api_qres_get_value_by_name(), api_qres_update_value(), api_qrmeta_get_count(), api_qrmeta_get_info(), api_rmeta_get_count(), api_rs_apply_row(), api_rs_clear_updates(), api_rs_delete_row(), api_rs_fetch(), api_rs_get_resultset_metadata(), api_rs_get_value(), api_rs_get_value_by_name(), api_rs_update_value(), api_val_cci_bind_bind(), apif_collection_create(), apif_last_pos(), apif_tell(), cubpacking::packer::append_to_buffer_and_pack_all(), func_type::Node::apply_argument(), func_type::Node::apply_signature(), apply_tailoring_rule_identity(), apply_tailoring_rule_w_dir(), apply_tailoring_rules(), area_alloc(), area_alloc_block(), area_destroy(), area_find_block(), area_flush(), area_free(), area_info(), area_insert_block(), area_validate(), array_indexer_create(), lockfree::tran::system::assign_index(), assign_null_value(), assign_set_value(), cubthread::worker_pool< Context >::core::worker::assign_task(), au_add_member_method(), au_change_serial_owner(), au_compute_groups(), au_delete_auth_of_dropping_table(), au_delete_new_auth(), au_drop_member_method(), au_drop_user(), au_drop_user_method(), au_extend_class_caches(), au_fetch_class_internal(), au_find_user_cache_index(), au_find_user_to_drop(), au_get_class_privilege(), au_get_new_auth(), au_get_owner_method(), au_perform_login(), au_set_new_auth(), au_set_password_internal(), au_update_new_auth(), cubthread::waiter::awake(), backupdb(), base64_decode(), base64_decode_chunk(), base64_encode(), base64_encode_local(), base64_partition_into_chunk(), base64_remove_space(), basename(), batch_res_destroyf(), cubthread::worker_pool< Context >::core::become_available(), bf2df_str_cmpdisk(), bfmt_print(), bh_add(), bh_build_heap(), bh_element_at(), bh_extract_max(), bh_insert(), bh_is_consistent(), bh_is_full(), bh_peek_max(), bh_replace_max(), bh_root_acquire(), bh_root_release(), bh_to_sorted_array(), bh_try_insert(), bind_api_structure(), bit16_clear(), bit16_is_set(), bit16_set(), bit16_set_trailing_bits(), bit32_clear(), bit32_is_set(), bit32_set(), bit32_set_trailing_bits(), bit64_clear(), bit64_is_set(), bit64_set(), bit64_set_trailing_bits(), bit8_clear(), bit8_is_set(), bit8_set(), bit8_set_trailing_bits(), bit_compare(), boot_add_charsets(), boot_add_collations(), boot_add_data_type(), boot_client_all_finalize(), boot_copy(), boot_create_all_volumes(), boot_dbparm_save_volume(), boot_define_attribute(), boot_define_charsets(), boot_define_class(), boot_define_class_authorization(), boot_define_collations(), boot_define_data_type(), boot_define_domain(), boot_define_dual(), boot_define_ha_apply_info(), boot_define_index(), boot_define_index_key(), boot_define_meth_argument(), boot_define_meth_file(), boot_define_meth_sig(), boot_define_method(), boot_define_partition(), boot_define_query_spec(), boot_define_serial(), boot_define_stored_procedure(), boot_define_stored_procedure_arguments(), boot_define_view_attribute(), boot_define_view_attribute_set_domain(), boot_define_view_authorization(), boot_define_view_class(), boot_define_view_db_charset(), boot_define_view_db_collation(), boot_define_view_index(), boot_define_view_index_key(), boot_define_view_method(), boot_define_view_method_argument(), boot_define_view_method_argument_set_domain(), boot_define_view_method_file(), boot_define_view_partition(), boot_define_view_stored_procedure(), boot_define_view_stored_procedure_arguments(), boot_define_view_super_class(), boot_define_view_trigger(), boot_define_view_vclass(), boot_find_root_heap(), boot_get_db_charset_from_header(), boot_get_db_parm(), boot_get_new_volume_name_and_id(), boot_get_server_locales(), boot_get_server_timezone_checksum(), boot_initialize_client(), boot_initialize_server(), boot_make_temp_volume_fullname(), boot_parse_add_volume_extensions(), boot_remove_all_temp_volumes(), boot_remove_useless_path_separator(), boot_reset_mk_after_restart_from_backup(), boot_restart_client(), boot_restart_server(), boot_set_server_session_key(), boot_shutdown_server(), boot_unregister_client(), br_activate(), brief_monitor(), broker_add_proxy_conn(), broker_delete_proxy_conn_by_fd(), broker_delete_proxy_conn_by_proxy_id(), broker_find_available_proxy(), broker_register_proxy_conn(), broker_shm_initialize_shm_as(), btree_add_index(), btree_add_mvccid(), btree_advance_and_find_key(), btree_advance_to_next_slot_and_fix_page(), btree_apply_key_range_and_filter(), btree_build_nleafs(), btree_check_all(), btree_check_by_btid(), btree_check_foreign_key(), btree_check_valid_record(), btree_compare_individual_key_value(), btree_compare_key(), btree_compress_node(), btree_connect_page(), btree_construct_leafs(), btree_count_oids(), btree_create_overflow_key_file(), btree_delete_internal(), btree_delete_key_from_leaf(), btree_delete_meta_record(), btree_delete_overflow_key(), btree_delete_postponed(), btree_delete_sysop_end(), btree_dump_capacity(), btree_dump_leaf_record(), btree_dump_root_header(), btree_find_AR_sampling_leaf(), btree_find_boundary_leaf(), btree_find_foreign_key(), btree_find_free_overflow_oids_page(), btree_find_key(), btree_find_key_from_leaf(), btree_find_lower_bound_leaf(), btree_find_min_or_max_key(), btree_find_multi_uniques(), btree_find_next_index_record(), btree_find_next_index_record_holding_current(), btree_find_next_index_record_holding_current_helper(), btree_find_oid_and_its_page(), btree_find_oid_does_mvcc_info_match(), btree_find_oid_from_leaf(), btree_find_oid_from_ovfl(), btree_find_split_point(), btree_first_oid(), btree_fix_ovfl_oid_pages_by_btid(), btree_fix_root_for_delete(), btree_fix_root_for_insert(), btree_fix_root_with_info(), btree_fk_object_does_exist(), btree_get_btid_from_file(), btree_get_creator_mvccid(), btree_get_disk_size_of_key(), btree_get_max_new_data_size(), btree_get_next_key_info(), btree_get_next_node_info(), btree_get_next_page(), btree_get_next_page_vpid(), btree_get_node_header(), btree_get_node_level(), btree_get_num_visible_from_leaf_and_ovf(), btree_get_num_visible_oids_from_all_ovf(), btree_get_overflow_header(), btree_get_perf_btree_page_type(), btree_get_pkey_btid(), btree_get_prefix_separator(), btree_get_root_header(), btree_get_root_vpid_from_btid(), btree_get_root_with_key(), btree_get_stats(), btree_get_stats_key(), btree_get_stats_with_AR_sampling(), btree_get_stats_with_fullscan(), btree_get_unique_statistics(), btree_ils_adjust_range(), btree_index_next_scan(), btree_index_start_scan(), btree_init_node_header(), btree_init_root_header(), btree_insert(), btree_insert_internal(), btree_insert_mvcc_delid_into_page(), btree_insert_object_ordered_by_oid(), btree_insert_sysop_end(), btree_is_btid_online_index(), btree_is_fence_key(), btree_is_single_object_key(), btree_key_append_object_as_new_overflow(), btree_key_append_object_into_ovf(), btree_key_append_object_non_unique(), btree_key_append_object_to_overflow(), btree_key_append_object_unique(), btree_key_delete_remove_object(), btree_key_find_and_insert_delete_mvccid(), btree_key_find_and_lock_unique_of_non_unique(), btree_key_find_and_lock_unique_of_unique(), btree_key_find_first_visible_row(), btree_key_find_first_visible_row_from_all_ovf(), btree_key_find_unique_version_oid(), btree_key_insert_delete_mvccid(), btree_key_insert_does_leaf_need_split(), btree_key_insert_new_key(), btree_key_insert_new_object(), btree_key_lock_and_append_object_unique(), btree_key_online_index_IB_insert(), btree_key_online_index_IB_insert_list(), btree_key_online_index_tran_delete(), btree_key_online_index_tran_insert(), btree_key_online_index_tran_insert_DF(), btree_key_process_objects(), btree_key_record_check_no_visible(), btree_key_relocate_last_into_ovf(), btree_key_remove_delete_mvccid(), btree_key_remove_delete_mvccid_non_unique(), btree_key_remove_delete_mvccid_unique(), btree_key_remove_insert_mvccid(), btree_key_remove_object_and_keep_visible_first(), btree_keyoid_checkscan_check(), btree_keyoid_checkscan_start(), btree_keyval_search(), btree_leaf_change_first_object(), btree_leaf_clear_flag(), btree_leaf_get_first_object(), btree_leaf_get_nth_oid_ptr(), btree_leaf_get_vpid_for_overflow_oids(), btree_leaf_is_flaged(), btree_leaf_is_key_between_min_max(), btree_leaf_lsa_eq(), btree_leaf_record_change_overflow_link(), btree_leaf_record_handle_first_overflow(), btree_leaf_record_replace_first_with_last(), btree_leaf_remove_object(), btree_leaf_set_flag(), btree_load_check_fk(), btree_load_index(), btree_load_new_page(), btree_locate_key(), btree_merge_node(), btree_merge_node_and_advance(), btree_merge_root(), btree_modify_leaf_ovfl_vpid(), btree_modify_overflow_link(), btree_multicol_key_has_null(), btree_multicol_key_is_null(), btree_mvcc_delete(), btree_mvcc_info_from_heap_mvcc_header(), btree_mvcc_info_to_heap_mvcc_header(), BTREE_MVCC_SET_HEADER_FIXED_SIZE(), btree_node_common_prefix(), btree_node_is_compressed(), btree_node_mergeable(), btree_node_number_of_keys(), btree_node_size_uncompressed(), btree_online_index_change_state(), btree_online_index_check_state(), btree_online_index_list_dispatcher(), btree_op_type_to_string(), btree_or_get_object(), btree_or_put_object(), btree_overflow_record_replace_object(), btree_overflow_remove_object(), btree_pack_object(), btree_pack_root_header(), btree_perf_track_time(), btree_perf_track_traverse_time(), btree_prepare_bts(), btree_purpose_to_string(), btree_range_opt_check_add_index_key(), btree_range_scan(), btree_range_scan_advance_over_filtered_keys(), btree_range_scan_descending_fix_prev_leaf(), btree_range_scan_find_fk_any_object(), btree_range_scan_resume(), btree_range_scan_select_visible_oids(), btree_range_scan_start(), btree_read_fixed_portion_of_non_leaf_record(), btree_read_fixed_portion_of_non_leaf_record_from_orbuf(), btree_read_record(), btree_read_record_without_decompression(), btree_recompress_record(), btree_record_add_delid(), btree_record_append_object(), btree_record_get_last_object(), btree_record_get_num_oids(), btree_record_get_num_visible_oids(), btree_record_object_clear_mvcc_flags(), btree_record_object_get_mvcc_flags(), btree_record_object_is_flagged(), btree_record_object_set_mvcc_flags(), btree_record_process_objects(), btree_record_remove_delid(), btree_record_remove_insid(), btree_record_remove_last_object(), btree_record_remove_object(), btree_record_remove_object_internal(), btree_record_replace_object(), btree_record_satisfies_snapshot(), btree_reflect_global_unique_statistics(), btree_remove_delete_mvccid_unique_internal(), btree_repair_prev_link_by_btid(), btree_replace_first_oid_with_ovfl_oid(), BTREE_RV_GET_DATA_LENGTH(), btree_rv_keyval_undo_delete(), btree_rv_keyval_undo_insert(), btree_rv_keyval_undo_insert_mvcc_delid(), btree_rv_keyval_undo_online_index_tran_delete(), btree_rv_keyval_undo_online_index_tran_insert(), btree_rv_log_delete_object(), btree_rv_log_insert_object(), btree_rv_mvcc_save_increments(), btree_rv_nodehdr_dump(), btree_rv_nodehdr_redo_insert(), btree_rv_nodehdr_undo_insert(), btree_rv_nodehdr_undoredo_update(), btree_rv_noderec_redo_insert(), btree_rv_noderec_undo_insert(), btree_rv_noderec_undoredo_update(), btree_rv_nop(), btree_rv_ovfid_undoredo_update(), btree_rv_pagerec_delete(), btree_rv_pagerec_insert(), btree_rv_read_keybuf_nocopy(), btree_rv_read_keybuf_two_objects(), btree_rv_read_keyval_info_nocopy(), btree_rv_record_modify_internal(), btree_rv_redo_global_unique_stats_commit(), btree_rv_remove_marked_for_delete(), btree_rv_remove_unique_stats(), btree_rv_roothdr_undo_update(), btree_rv_save_keyval_for_undo(), btree_rv_save_keyval_for_undo_two_objects(), btree_rv_save_root_head(), btree_rv_undo_global_unique_stats_commit(), btree_rv_undo_mark_dealloc_page(), btree_rv_update_tran_stats(), btree_rv_util_save_page_records(), btree_rv_write_log_record(), btree_save_last_leafrec(), btree_scan_for_show_index_capacity(), btree_scan_for_show_index_header(), btree_scan_update_range(), btree_search_key_and_apply_functions(), btree_search_leaf_page(), btree_search_nonleaf_page(), btree_select_visible_object_for_range_scan(), btree_seq_find_oid_from_ovfl(), btree_set_error(), btree_set_mvcc_header_ids_for_update(), btree_set_mvccid(), btree_set_split_point(), btree_set_unknown_key_error(), btree_sort_get_next(), btree_split_next_pivot(), btree_split_node(), btree_split_node_and_advance(), btree_split_root(), btree_split_test(), btree_start_overflow_page(), btree_store_overflow_key(), btree_top_n_items_binary_search(), btree_unpack_mvccinfo(), btree_unpack_object(), btree_update(), btree_verify_leaf_node(), btree_verify_node(), btree_verify_nonleaf_node(), btree_write_default_split_info(), btree_write_fixed_portion_of_non_leaf_record(), btree_write_fixed_portion_of_non_leaf_record_to_orbuf(), btree_write_record(), build_att_coll_change_map(), build_att_type_change_map(), build_attr_change_map(), build_compressed_uca_w_l13(), mvcctable::build_mvcc_info(), build_uca_w_l4(), build_xasl_for_server_delete(), func_type::can_signature_have_collation(), cas_bi_set_cci_pconnect(), cas_bi_set_function_disable(), cas_bi_set_function_enable(), cas_bi_set_statement_pooling(), cas_error_log_backup(), cas_log_backup(), cas_log_query_plan_file(), cas_log_write_and_set_savedpos(), cas_main(), cas_monitor_worker(), caslob_to_dblob(), catalog_add_class_info(), catalog_add_representation(), catalog_check_class_consistency(), catalog_check_consistency(), catalog_copy_btree_statistic(), catalog_delete(), catalog_drop_all(), catalog_drop_all_representation_and_class(), catalog_drop_old_representations(), catalog_drop_representation_class_from_page(), catalog_drop_representation_item(), catalog_dump(), catalog_dump_disk_attribute(), catalog_end_access_with_dir_oid(), catalog_fetch_attribute_value(), catalog_fetch_btree_statistics(), catalog_find_optimal_page(), catalog_find_representation_item_position(), catalog_get_btree_statistics(), catalog_get_cardinality(), catalog_get_cardinality_by_name(), catalog_get_class_info(), catalog_get_class_info_from_record(), catalog_get_dir_oid_from_cache(), catalog_get_last_representation_id(), catalog_get_rep_dir(), catalog_get_representation(), catalog_get_representation_directory(), catalog_get_representation_item(), catalog_get_representation_record(), catalog_get_representation_record_after_search(), catalog_initialize_new_page(), catalog_insert(), catalog_insert_representation_item(), catalog_put_btree_statistics(), catalog_put_class_info_to_record(), catalog_put_representation_item(), catalog_rv_insert_redo(), catalog_rv_new_page_redo(), catalog_rv_update(), catalog_start_access_with_dir_oid(), catalog_store_attribute_value(), catalog_update(), catalog_update_class_info(), catcls_allocate_entry(), catcls_class_install(), catcls_convert_class_oid_to_oid(), catcls_delete_instance(), catcls_delete_subset(), catcls_find_btid_of_class_name(), catcls_find_oid(), catcls_find_oid_by_class_name(), catcls_free_entry(), catcls_get_apply_info_log_record_time(), catcls_get_db_collation(), catcls_get_object_set(), catcls_get_or_value_from_attribute(), catcls_get_or_value_from_buffer(), catcls_get_or_value_from_class(), catcls_get_or_value_from_class_record(), catcls_get_or_value_from_domain(), catcls_get_or_value_from_indexes(), catcls_get_or_value_from_partition(), catcls_get_or_value_from_record(), catcls_get_server_compat_info(), catcls_insert_instance(), catcls_insert_subset(), catcls_put_entry(), catcls_put_or_value_into_record(), catcls_remove_entry(), catcls_reorder_attributes_by_repr(), catcls_replace_entry_oid(), catcls_update_instance(), catcls_update_subset(), cci_set_to_xcol(), cfg_copy_hosts(), cfg_create_host_list(), vacuum_job_cursor::change_blockid(), change_constraints_comment_partitioned_class(), change_constraints_status_partitioned_class(), change_key_weight_list(), change_mparam(), check_all_services_status(), func_type::Node::check_arg_compat(), check_arg_valid(), check_args(), check_att_chg_allowed(), check_att_domain(), check_authorization(), check_change_attribute(), check_change_class_collation(), record_descriptor::check_changes_are_permitted(), check_client_capabilities(), check_constraints(), check_env_lang_val(), check_fk_validity(), check_for_cons(), check_grant_option(), lockfree::freelist< T >::check_my_pointer(), cubmonitor::monitor::check_name_count(), cubthread::check_not_single_thread(), cubpacking::check_range(), btree_insert_list::check_release_latch(), check_serial_invariants(), check_server_capabilities(), check_shard_conn(), vacuum_shutdown_sequence::check_shutdown_request(), check_timezone_compat(), mvcc_active_tran::check_valid(), cubthread::worker_pool< Context >::core::check_worker_not_available(), check_xml_elem_name(), checksumdb(), chksum_get_next_lower_bound(), chksum_get_quote_escaped_lower_bound(), chksum_need_skip_table(), chksum_print_checksum_query(), chksum_report(), chksum_set_initial_chunk_id_and_lower_bound(), chksum_start(), ci_conn_get_error_impl(), ci_stmt_get_resultset_metadata_impl(), ci_stmt_set_parameter_impl(), lockfree::circular_queue< T >::circular_queue(), lockfree::freelist< T >::claim(), resource_shared_pool< cubload::driver >::claim(), cubthread::entry::claim_system_worker(), class_instances_can_be_referenced(), class_referenced_by_class(), class_referenced_by_domain(), classobj_area_init(), classobj_cache_not_null_constraints(), classobj_change_constraint_comment(), classobj_change_constraint_status(), classobj_check_function_constraint_info(), classobj_check_index_compatibility(), classobj_check_index_exist(), classobj_copy_attlist(), classobj_copy_attribute_like(), classobj_copy_constraint_like(), classobj_copy_default_expr(), classobj_copy_methfiles(), classobj_copy_methlist(), classobj_copy_props(), classobj_copy_reslist(), classobj_decache_class_constraints(), classobj_drop_foreign_key_ref(), classobj_find_constraint_by_attrs(), classobj_init_attribute(), classobj_init_method(), classobj_initialize_default_expr(), classobj_install_template(), classobj_make_class_constraints(), classobj_make_index_filter_pred_info(), classobj_make_index_prefix_info(), classobj_make_template_like(), classobj_populate_class_properties(), classobj_put_foreign_key_ref(), classobj_put_index(), classobj_put_seq_and_iterate(), lockfree::hashmap< Key, T >::clear(), clear_data_buffer(), cubthread::entry::clear_resources(), cubthread::clear_thread_local_entry(), clear_wait_queue_entry_and_free_buffer(), regu_variable_node::clear_xasl_local(), clist_init(), func_type::cmp_types_castable(), func_type::cmp_types_equivalent(), cnv_bad_char(), cnv_cleanup(), cnv_currency_zone(), cnv_fmt_analyze(), cnv_fmt_number_mode(), cnv_fmt_time_mode(), cnv_get_value_string_buffer(), cnv_valid_currency(), cnv_wcs(), co_signal(), col_api_delete(), col_api_destroy(), col_api_get_elem(), col_api_get_elem_domain_info(), col_api_insert(), col_api_length(), col_api_update(), col_dtorf(), col_expand_blocks(), col_permanent_oids(), col_successive_merge(), collect_class_grants(), common_collation_end_rule(), common_collation_start_rule(), comp_func_coll_uca_exp(), comp_func_coll_uca_simple_weights(), comp_func_raw_countries(), comp_func_raw_ds_rules(), comp_func_raw_ds_rulesets(), comp_func_raw_links(), comp_func_raw_offset_rules(), comp_func_raw_zones(), comp_func_tz_names(), compare_ce_list(), compare_driver(), compile_partition_expression(), compile_trigger_activity(), mvcctable::complete_mvcc(), complete_statement(), mvcctable::complete_sub_mvcc(), mvcc_active_tran::compute_highest_completed_mvccid(), mvcc_active_tran::compute_lowest_active_mvccid(), mvcctable::compute_oldest_visible_mvccid(), compute_weights_per_level_stats(), conf_file_has_been_loaded(), conn_destroyf(), conn_end_tran(), conv_tz(), convert_locale_number(), convert_speclist_to_objlist(), cublocale::convert_to_string(), cublocale::convert_to_wstring(), copy_execution_values(), copy_node_in_tree_post(), mvcc_active_tran::copy_to(), cubregex::count(), create_alphabet(), create_child_process(), cubthread::manager::create_daemon(), cubthread::manager::create_daemon_without_entry(), create_db_value_bind_table(), create_handle_context(), create_opt_ce_w_exp(), create_opt_weights(), create_or_drop_index_helper(), create_select_to_insert_into(), crypt_crc32(), crypt_default_decrypt(), crypt_default_encrypt(), crypt_generate_random_bytes(), crypt_md5_buffer_binary(), crypt_md5_buffer_hex(), crypt_sha_functions(), csect_check_own(), csect_check_own_critical_section(), csect_demote(), csect_demote_critical_section(), csect_enter(), csect_enter_as_reader(), csect_enter_critical_section(), csect_enter_critical_section_as_reader(), csect_exit(), csect_exit_critical_section(), csect_finalize_critical_section(), csect_finalize_static_critical_sections(), csect_initialize_critical_section(), csect_name_at(), csect_promote(), csect_promote_critical_section(), csect_start_scan(), csect_wait_on_promoter_queue(), csect_wait_on_writer_queue(), csession_find_or_create_session(), csession_get_variable(), csql_append_more_line(), csql_get_external_command(), csql_help_schema(), csql_help_trigger(), csql_is_auto_commit_requested(), csql_results(), css_add_client_version_string(), css_add_list(), css_block_all_active_conn(), css_change_ha_server_state(), css_check_ha_server_state_for_client(), css_claim_net_header_entry(), css_claim_queue_entry(), css_claim_wait_queue_entry(), css_connection_handler_thread(), css_dealloc_conn(), css_decrement_num_conn_internal(), css_end_server_request(), css_final_conn_list(), css_finalize_list(), css_free_conn(), css_free_net_header_list(), css_free_queue_entry_list(), css_free_wait_queue_entry(), css_free_wait_queue_list(), css_get_access_status_with_name(), css_get_client_id(), css_get_comm_request_id(), css_get_current_conn_entry(), css_get_request_id(), css_get_session_ids_for_active_connections(), css_increment_num_conn_internal(), css_init(), css_init_conn_rules(), css_initialize_list(), css_insert_into_active_conn_list(), css_internal_request_handler(), css_make_access_status_exist_user(), css_make_conn(), css_notify_ha_log_applier_state(), css_platform_independent_poll(), css_print_conn_list(), css_print_free_conn_list(), css_process_change_server_ha_mode_request(), css_process_get_eof_request(), css_queue_command_packet(), css_queue_packet(), css_queue_remove_header_entry_ptr(), css_queue_user_data_buffer(), css_receive_data(), css_receive_data_from_client_with_timeout(), css_receive_error(), css_refuse_connection_request(), css_register_server_timeout_fn(), css_remove_all_unexpected_packets(), css_retire_net_header_entry(), css_retire_queue_entry(), css_retire_wait_queue_entry(), css_return_queued_data_timeout(), css_return_queued_error(), css_return_queued_request(), css_send_abort_request(), css_send_abort_to_client(), css_send_data_to_client(), css_send_error_to_client(), css_send_error_to_server(), css_send_reply_and_2_data_to_client(), css_send_reply_and_3_data_to_client(), css_send_reply_and_data_to_client(), css_send_req_to_server(), css_set_user_access_status(), css_shutdown_conn(), css_tcp_client_open_with_retry(), css_tcp_client_open_with_timeout(), css_test_for_client_errors(), css_user_access_status_start_scan(), css_wp_core_job_scan_mapper(), cubmem::cstyle_alloc(), cursor_allocate_oid_buffer(), cursor_allocate_tuple_area(), cursor_buffer_last_page(), cursor_close(), cursor_construct_tuple_from_overflow_pages(), cursor_fetch_oids(), cursor_fetch_page_having_tuple(), cursor_first_tuple(), cursor_free(), cursor_get_current_oid(), cursor_get_list_file_page(), cursor_get_tuple_value(), cursor_get_tuple_value_from_list(), cursor_get_tuple_value_list(), cursor_has_first_hidden_oid(), cursor_initialize_current_tuple_value_position(), cursor_last_tuple(), cursor_next_tuple(), cursor_open(), cursor_peek_tuple(), cursor_point_current_tuple(), cursor_prefetch_column_oids(), cursor_prefetch_first_hidden_oid(), cursor_prev_tuple(), cursor_set_copy_tuple_value(), cursor_set_prefetch_lock_mode(), date_to_char(), db_abs_dbval(), db_accumulate_json_arrayagg(), db_accumulate_json_objectagg(), db_add_attribute_internal(), db_add_class_resolution(), db_add_constraint(), db_add_host_status(), db_add_method_file(), db_add_months(), db_add_query_spec(), db_add_resolution(), db_add_set_attribute_domain(), db_add_super_internal(), db_add_time(), db_add_volume_ex(), db_bigint_to_binary_string(), db_bit_string(), db_bit_string_coerce(), db_bit_to_blob(), db_blob_from_file(), db_blob_length(), db_blob_to_bit(), db_calculate_current_time(), db_can_execute_statement_with_autocommit(), db_ceil_dbval(), db_change_default(), db_change_method_implementation(), db_change_query_spec(), db_char_string_coerce(), db_char_to_blob(), db_char_to_clob(), db_check_limit_need_recompile(), db_check_or_create_null_term_string(), db_clob_from_file(), db_clob_length(), db_clob_to_char(), db_close_session_local(), db_compress_like_pattern(), db_conv(), db_conv_tz(), db_convert_json_into_scalar(), db_cp_query_type_helper(), db_crc32_dbval(), db_create_vclass(), db_date_add_sub_interval_days(), db_date_add_sub_interval_expr(), db_date_format(), db_datetime_string(), db_drop_class_resolution(), db_drop_constraint(), db_drop_method_file(), db_drop_method_files(), db_drop_query_spec(), db_drop_resolution(), db_drop_set_attribute_domain(), db_drop_super(), db_drop_super_connect(), db_evaluate_json_array_append(), db_evaluate_json_array_insert(), db_evaluate_json_contains(), db_evaluate_json_depth(), db_evaluate_json_extract(), db_evaluate_json_get_all_paths(), db_evaluate_json_insert(), db_evaluate_json_length(), db_evaluate_json_object(), db_evaluate_json_pretty(), db_evaluate_json_quote(), db_evaluate_json_remove(), db_evaluate_json_type_dbval(), db_evaluate_json_unquote(), db_evaluate_json_valid(), db_execute_and_keep_statement_local(), db_fetch_array(), db_fetch_composition(), db_find_string_in_in_set(), db_floor_dbval(), db_format(), db_from_tz(), db_from_unixtime(), db_get_cs_coll_info(), db_get_date_format(), db_get_date_item(), db_get_date_quarter(), db_get_date_weekday(), db_get_deep_copy_of_json(), db_get_info_for_like_optimization(), db_get_like_optimization_bounds(), db_get_line_of_statement(), db_get_next_like_pattern_character(), db_get_query_result_format(), db_get_schema_def_dbval(), db_get_serial_current_value(), db_get_serial_next_value_ex(), db_get_subclass_names(), db_get_superclass_names(), db_get_time_item(), db_get_week_of_year(), db_has_modified_class(), db_init_prepare_info(), db_is_any_class(), db_is_class(), db_json_array_append_func(), db_json_array_insert_func(), db_json_array_push_back(), db_json_convert_to_utf8(), db_json_copy_and_convert_to_utf8(), db_json_copy_string_from_value(), db_json_deserialize_doc_internal(), db_json_extract_document_from_path(), db_json_get_bigint_from_value(), db_json_get_bool_from_value(), db_json_get_double_from_value(), db_json_get_int_from_value(), db_json_get_json_from_str(), db_json_get_string_from_value(), db_json_get_type_as_str(), db_json_insert_func(), db_json_json_string_as_utf8(), db_json_load_validator(), db_json_merge_two_json_array_values(), db_json_merge_two_json_objects_patch(), db_json_merge_two_json_objects_preserve(), db_json_object_add_member(), db_json_path_unquote_object_keys(), db_json_pretty_func(), db_json_replace_func(), db_json_set_func(), db_json_split_path_by_delimiters(), db_json_unpack_bool_to_value(), db_json_unquote(), db_json_val_from_str(), db_last_day(), db_log_generic_dbval(), db_mod_bigint(), db_mod_double(), db_mod_float(), db_mod_int(), db_mod_monetary(), db_mod_numeric(), db_mod_short(), db_mod_string(), db_months_between(), db_new_time(), db_numeric_string(), db_open_buffer_and_compile_first_statement(), db_open_local(), db_pack_prepare_info(), db_private_alloc_debug(), db_private_realloc_external(), db_query_end_internal(), db_query_get_tuple_valuelist(), db_query_seek_tuple(), db_rename_internal(), db_round_dbval(), db_session_is_last_statement(), db_set_loader_commands(), db_set_page_size(), db_set_statement_auto_commit(), db_sleep(), db_str_to_date(), db_string_aes_decrypt(), db_string_aes_encrypt(), db_string_bigint(), db_string_bit(), db_string_bit_length(), db_string_char_length(), db_string_chr(), db_string_compare(), db_string_concatenate(), db_string_convert_to(), db_string_date(), db_string_datetime(), db_string_double(), db_string_elt(), db_string_fix_string_size(), db_string_float(), db_string_from_base64(), db_string_index_prefix(), db_string_insert_substring(), db_string_instr(), db_string_integer(), db_string_like(), db_string_limit_size_string(), db_string_lower(), db_string_make_empty_typed_string(), db_string_md5(), db_string_monetary(), db_string_pad(), db_string_position(), db_string_prefix_compare(), db_string_regexp_count(), db_string_regexp_instr(), db_string_regexp_like(), db_string_regexp_replace(), db_string_regexp_substr(), db_string_repeat(), db_string_replace(), db_string_reverse(), db_string_rlike(), db_string_sha_one(), db_string_sha_two(), db_string_short(), db_string_space(), db_string_substring(), db_string_substring_index(), db_string_time(), db_string_timestamp(), db_string_to_base64(), db_string_to_timestamptz_ex(), db_string_translate(), db_string_trim(), db_string_truncate(), db_string_unique_prefix(), db_string_upper(), db_string_value(), db_sys_date(), db_sys_date_and_epoch_time(), db_sys_datetime(), db_sys_time(), db_sys_timestamp(), db_sys_timezone(), db_time_dbval(), db_time_diff(), db_time_format(), db_time_string(), db_timestamp_decode_utc(), db_timestamp_encode_utc(), db_timestamp_string(), db_to_date(), db_to_datetime(), db_to_number(), db_to_time(), db_to_timestamp(), db_trunc_dbval(), db_type_to_db_domain(), db_tz_offset(), db_unix_timestamp(), db_unpack_prepare_info(), db_value_alloc_and_copy(), db_value_clear_array(), db_value_domain_default(), db_value_domain_zero(), db_value_to_enumeration_value(), db_value_to_value(), db_width_bucket(), db_width_bucket_calculate_numeric(), db_ws_free(), dblob_to_caslob(), dbt_add_constraint(), dbt_add_foreign_key(), dbt_drop_constraint(), dbt_reserve_name(), tx_transient_class_registry::decache_heap_repr(), delete_list_by_oids(), delete_object_tuple(), delete_real_class(), cuberr::context::deregister_thread_local(), desc_obj_to_disk(), object_printer::describe_attribute(), object_printer::describe_class(), object_printer::describe_comment(), object_printer::describe_constraint(), db_value_printer::describe_data(), db_value_printer::describe_midxkey(), db_value_printer::describe_money(), object_printer::describe_partition_info(), db_value_printer::describe_set(), db_value_printer::describe_value(), lockfree::hashmap< Key, T >::destroy(), cubthread::manager::destroy_and_untrack_all_resources(), cubthread::manager::destroy_and_untrack_resource(), cubthread::manager::destroy_daemon(), cubthread::manager::destroy_daemon_without_entry(), log_system_tdes::destroy_system_transactions(), destroy_uca_instance(), destroy_user_locales(), cubthread::manager::destroy_worker_pool(), dir_repath(), disk_add_volume(), disk_add_volume_extension(), disk_cache_final(), disk_cache_init(), disk_cache_load_all_volumes(), disk_cache_load_volume(), disk_cache_lock_reserve(), disk_cache_unlock_reserve(), disk_cache_update_vol_free(), disk_can_overwrite_data_volume(), disk_check(), disk_check_own_reserve_for_purpose(), disk_check_sectors_are_reserved(), disk_check_sectors_are_reserved_in_volume(), disk_check_volume(), disk_extend(), disk_format(), disk_get_boot_db_charset(), disk_get_link(), disk_get_volpurpose(), disk_get_voltype(), disk_is_page_sector_reserved_with_debug_crash(), disk_is_sector_reserved(), disk_lock_extend(), disk_manager_init(), disk_purpose_to_string(), disk_reserve_from_cache(), disk_reserve_from_cache_vols(), disk_reserve_from_cache_volume(), disk_reserve_sectors(), disk_reserve_sectors_in_volume(), disk_rv_redo_format(), disk_rv_redo_volume_expand(), disk_rv_reserve_sectors(), disk_rv_undo_format(), disk_rv_unreserve_sectors(), disk_rv_volhead_extend_redo(), disk_rv_volhead_extend_undo(), disk_set_creation(), disk_set_link(), disk_spacedb(), disk_stab_cursor_check_valid(), disk_stab_cursor_clear_bit(), disk_stab_cursor_compare(), disk_stab_cursor_fix(), disk_stab_cursor_set_at_end(), disk_stab_cursor_set_at_sectid(), disk_stab_cursor_set_at_start(), disk_stab_cursor_set_bit(), disk_stab_init(), disk_stab_iterate_units(), disk_stab_unit_check_reserved(), disk_stab_unit_reserve(), disk_stab_unit_unreserve(), disk_to_attribute(), disk_to_class(), disk_to_domain2(), disk_to_partition_info(), disk_to_root(), disk_unlock_extend(), disk_unreserve_ordered_sectors_without_csect(), disk_unreserve_sectors_from_volume(), disk_update_instance(), disk_verify_volume_header(), disk_volheader_check_magic(), disk_volume_boot(), disk_volume_expand(), disk_volume_header_next_scan(), disk_volume_header_start_scan(), dispatch_thr_f(), dl_destroy_candidates(), dl_destroy_dynamic_loader(), dl_find_daemon(), dl_initiate_dynamic_loader(), dl_is_valid_image_file(), dl_validate_candidates(), dl_validate_file_entry(), dlisth_map(), dlmalloc(), dlmallopt(), do_add_attribute(), do_add_constraints(), do_add_methods(), do_add_resolutions(), do_add_supers(), do_alter(), do_alter_change_auto_increment(), do_alter_change_col_comment(), do_alter_change_default_cs_coll(), do_alter_change_owner(), do_alter_change_tbl_comment(), do_alter_clause_add_index(), do_alter_clause_change_attribute(), do_alter_clause_drop_index(), do_alter_clause_rename_entity(), do_alter_index_comment(), do_alter_index_rebuild(), do_alter_one_clause_with_template(), do_alter_partitioning_post(), do_alter_partitioning_pre(), do_alter_serial(), do_alter_trigger(), do_alter_user(), do_change_att_schema_only(), do_change_auto_increment_serial(), do_check_for_empty_classes_in_delete(), do_check_rows_for_null(), do_coalesce_partition_post(), do_coalesce_partition_pre(), do_commit_after_execute(), do_copy_indexes(), do_create_entity(), do_create_index(), do_create_odku_stmt(), do_create_partition(), do_create_partition_constraint(), do_create_partition_constraints(), do_create_serial(), do_create_serial_internal(), do_create_trigger(), do_create_user(), do_drop_index(), do_drop_partition_list(), do_drop_session_variables(), do_drop_trigger(), do_drop_user(), do_drop_variable(), do_evaluate_default_expr(), do_evaluate_insert_values(), do_execute_delete(), do_execute_do(), do_execute_insert(), do_execute_merge(), do_execute_select(), do_execute_session_statement(), do_execute_statement(), do_execute_update(), do_find_auto_increment_serial(), do_get_optimization_param(), do_get_partition_parent(), do_get_prepared_statement_info(), do_get_serial_cached_num(), do_get_serial_obj_id(), do_get_stats(), do_get_trigger(), do_get_xaction(), do_grant(), do_insert(), do_insert_at_server(), do_insert_template(), do_kill(), do_merge(), do_on_duplicate_key_update(), log_postpone_cache::do_postpone(), do_prepare_delete(), do_prepare_insert(), do_prepare_insert_internal(), do_prepare_merge(), do_prepare_select(), do_prepare_session_statement(), do_prepare_update(), do_process_prepare_statement(), do_promote_partition(), do_promote_partition_by_name(), do_promote_partition_list(), do_reclaim_addresses(), do_reclaim_class_addresses(), do_recompile_and_execute_prepared_statement(), do_recreate_filter_index_constr(), do_recreate_renamed_class_indexes(), do_redistribute_partitions_data(), do_remove_partition_post(), do_remove_partition_pre(), do_rename_internal(), do_rename_trigger(), do_reorganize_partition_post(), do_reorganize_partition_pre(), do_replicate_statement(), do_reset_auto_increment_serial(), do_revoke(), do_rollback(), do_run_update_query_for_class(), do_run_update_query_for_new_default_expression_fields(), do_run_update_query_for_new_notnull_fields(), do_run_upgrade_instances_domain(), do_save_all_indexes(), do_savepoint(), do_select_internal(), do_send_plan_trace_to_session(), do_set_session_variables(), do_set_timezone(), do_set_user_host_variables(), do_statement(), do_update_auto_increment_serial_on_rename(), do_update_maxvalue_of_auto_increment_serial(), do_update_new_cols_with_default_expression(), do_update_new_notnull_cols_without_default(), do_vacuum(), domain_to_disk(), drop_class_name(), drop_foreign_key_ref(), drop_foreign_key_ref_internal(), drop_internal(), drop_stored_procedure(), dump_collation_codepoint(), dump_collation_contr(), dump_console_conversion(), JSON_PATH::dump_json_path(), dump_locale_alphabet(), dump_locale_collation(), dump_locale_normalization(), dump_tz(), dumplocale(), dwb_acquire_next_slot(), dwb_add_page(), dwb_add_volume_to_block_flush_area(), dwb_adjust_write_buffer_values(), dwb_block_add_wait_queue_entry(), dwb_block_create_ordered_slots(), dwb_block_disconnect_wait_queue_entry(), dwb_check_data_page_is_sane(), dwb_compare_slots(), dwb_compare_vol_fd(), dwb_create_blocks(), dwb_create_internal(), dwb_debug_check_dwb(), dwb_destroy_internal(), dwb_destroy_wait_queue(), dwb_ends_structure_modification(), dwb_file_sync_helper(), dwb_flush_block(), dwb_flush_force(), dwb_flush_next_block(), dwb_get_next_block_for_flush(), dwb_init_slot(), dwb_initialize_block(), dwb_initialize_slot(), dwb_load_and_recover_pages(), dwb_make_wait_queue_entry(), dwb_read_page(), dwb_set_data_on_next_slot(), dwb_set_slot_data(), dwb_signal_block_completion(), dwb_signal_waiting_thread(), dwb_signal_waiting_threads(), dwb_slots_hash_delete(), dwb_slots_hash_insert(), dwb_starts_structure_modification(), dwb_wait_for_block_completion(), dwb_wait_for_strucure_modification(), dwb_write_block(), ehash_compose_record(), ehash_create_helper(), ehash_insert_helper(), ehash_rv_delete(), ehash_rv_delete_undo(), ehash_rv_init_bucket_redo(), ehash_rv_insert_undo(), elo_copy(), elo_copy_structure(), elo_create(), elo_delete(), elo_read(), elo_size(), elo_write(), emit_index_def(), emit_instance_attributes(), emit_schema(), encode_ext_type_to_short(), encrypt_password_sha2_512(), cubscan::json_table::scanner::end(), end_case_rule(), end_collation_cubrid_rule_set(), end_collation_cubrid_rule_set_cp_ch(), end_collation_cubrid_rule_set_ech_ecp(), end_collation_cubrid_rule_set_w_wr(), end_collation_logical_pos(), end_collation_reset(), end_collation_rule(), end_collation_x(), end_collation_x_context(), end_collation_x_extend(), end_collation_x_rule(), end_dateFormatCUBRID(), end_datetimeFormatCUBRID(), end_datetimetzFormatCUBRID(), end_day(), end_dayPeriod(), end_month(), end_month_day_Width(), end_number_symbol(), end_one_collation(), cubthread::worker_pool_task_capper< Context >::end_task(), end_timeFormatCUBRID(), end_timestampFormatCUBRID(), end_timestamptzFormatCUBRID(), end_timetzFormatCUBRID(), lockfree::tran::descriptor::end_tran(), lockfree::hashmap< Key, T >::end_tran_force(), end_transform_buffer(), cubmonitor::transaction_sheet_manager::end_watch(), cubthread::entry::entry(), envvar_bindir_file(), envvar_codepagedir_file(), envvar_confdir_file(), envvar_javadir_file(), envvar_ldmldir_file(), envvar_libdir_file(), envvar_localedatadir_file(), envvar_localedir_file(), envvar_loclib_dir_file(), envvar_logdir_file(), envvar_tmpdir_file(), envvar_tzdata_dir_file(), envvar_vardir_file(), er_call_stack_dump_on_error(), er_clearid(), er_errid(), er_file_backup(), er_file_open(), er_find_fmt(), er_get_area_error(), er_get_ermsg_from_area_error(), er_init(), er_is_error_severity(), er_msg(), er_notify_event_on_error(), er_register_log_handler(), er_set_area_error(), er_set_internal(), er_setid(), er_stack_pop_and_keep_error(), er_study_spec(), er_vsprintf(), lf_hash_table_cpp< Key, T >::erase(), lockfree::hashmap< Key, T >::erase_locked(), lf_hash_table_cpp< Key, T >::erase_locked(), error_info_set_with_msg(), es_copy_file(), es_create_file(), es_delete_file(), es_get_file_size(), es_init(), es_name_hash_func(), es_posix_final(), es_read_file(), es_rename_file(), es_write_file(), eval_action(), eval_value_rel_cmp(), cubxasl::json_table::column::evaluate(), cubxasl::json_table::column::evaluate_exists(), cubxasl::json_table::column::evaluate_extract(), cubxasl::json_table::column::evaluate_ordinality(), event_file_backup(), event_file_open(), event_log_end(), event_log_init(), event_log_sql_string(), cubthread::worker_pool_task_capper< Context >::execute(), cubload::load_task::execute(), css_server_task::execute(), css_server_external_task::execute(), vacuum_worker_task::execute(), execute_create_select_query(), cubthread::worker_pool< Context >::core::worker::execute_current_task(), execute_query(), cubthread::worker_pool< Context >::core::execute_task(), cubmonitor::transaction_statistic< S >::extend(), extract_triggers(), fail(), fe_alloc_handle(), fe_bind_get_first_child(), fe_bind_get_next_sibling(), fe_bind_get_parent(), fe_bind_graft(), fe_bind_map(), fe_bind_prune(), fe_bind_to_handle(), fe_destroy(), fe_destroy_handle(), fe_destroy_handle_worker(), fe_lookup(), cubmonitor::counter_timer_statistic< A, T >::fetch(), cubmonitor::counter_timer_max_statistic< A, T, M >::fetch(), fetch_class(), fetch_instance(), fetch_peek_arith(), fetch_peek_dbval(), fetch_peek_min_max_value_of_width_bucket_func(), fetch_result(), cubscan::json_table::scanner::cursor::fetch_row(), cubload::session::fetch_status(), fi_code_item(), fi_set(), fi_set_force(), fi_state(), fi_test(), fi_thread_final(), fi_thread_init(), file_alloc(), file_alloc_multiple(), file_alloc_sticky_first_page(), file_apply_tde_algorithm(), file_check_vpid(), file_create(), file_create_ehash(), file_create_ehash_dir(), file_create_heap(), file_create_temp_internal(), file_create_with_npages(), file_dealloc(), file_destroy(), file_extdata_append(), file_extdata_append_array(), file_extdata_apply_funcs(), file_extdata_at(), file_extdata_find_and_remove_item(), file_extdata_find_not_full(), file_extdata_find_nth_vpid(), file_extdata_find_ordered(), file_extdata_func_for_search_ordered(), file_extdata_init(), file_extdata_insert_at(), file_extdata_is_empty(), file_extdata_is_full(), file_extdata_merge_ordered(), file_extdata_merge_pages(), file_extdata_search_item(), file_get_tde_algorithm_internal(), file_get_type(), file_header_alloc(), file_header_dealloc(), file_header_sanity_check(), file_is_temp(), file_log_extdata_set_next(), file_log_fhead_alloc(), file_log_fhead_dealloc(), file_map_pages(), file_numerable_add_page(), file_numerable_find_nth(), file_numerable_truncate(), file_partsect_alloc(), file_partsect_clear_bit(), file_partsect_pageid_to_offset(), file_partsect_set_bit(), file_perm_alloc(), file_perm_dealloc(), file_perm_expand(), file_postpone_destroy(), file_rv_dealloc_internal(), file_rv_destroy(), file_rv_dump_extdata_remove(), file_rv_dump_vfid_and_vpid(), file_rv_extdata_add(), file_rv_extdata_merge(), file_rv_extdata_remove(), file_rv_extdata_set_next(), file_rv_fhead_alloc(), file_rv_fhead_dealloc(), file_rv_fhead_set_last_user_page_ftab(), file_rv_fhead_sticky_page(), file_rv_header_update_mark_deleted(), file_rv_partsect_update(), file_rv_perm_expand_redo(), file_rv_perm_expand_undo(), file_rv_set_tde_algorithm(), file_rv_tracker_mark_heap_deleted(), file_rv_tracker_mark_heap_deleted_compensate_or_run_postpone(), file_rv_tracker_reuse_heap(), file_rv_tracker_unregister_undo(), file_rv_user_page_mark_delete(), file_rv_user_page_unmark_delete_logical(), file_rv_user_page_unmark_delete_physical(), file_sector_map_pages(), file_table_add_full_sector(), file_table_check(), file_table_move_partial_sectors_to_header(), file_temp_alloc(), file_temp_preserve(), file_temp_reset_user_pages(), file_temp_retire_internal(), file_tempcache_alloc_entry(), file_tempcache_check_duplicate(), file_tempcache_check_lock(), file_tempcache_get(), file_tempcache_init(), file_tempcache_put(), file_tempcache_retire_entry(), file_tempcache_unlock(), file_tracker_apply_to_file(), file_tracker_check(), file_tracker_create(), file_tracker_get_and_protect(), file_tracker_interruptable_iterate(), file_tracker_item_mark_heap_deleted(), file_tracker_item_reuse_heap(), file_tracker_load(), file_tracker_map(), file_tracker_register(), file_tracker_register_internal(), file_tracker_reuse_heap(), file_tracker_unregister(), fileio_allocate_node(), fileio_compensate_flush(), fileio_compress_backup_node(), fileio_decompress_restore_volume(), fileio_expand_to(), fileio_find_next_perm_volume(), fileio_find_previous_perm_volume(), fileio_find_previous_temp_volume(), fileio_flush_control_add_tokens(), fileio_flush_control_finalize(), fileio_flush_control_get_token(), fileio_flush_control_initialize(), fileio_get_directory_path(), fileio_get_number_of_partition_free_pages(), fileio_get_number_of_partition_free_sectors(), fileio_is_temp_volume(), fileio_lock_la_dbname(), fileio_page_bitmap_dump(), fileio_page_bitmap_is_set(), fileio_page_bitmap_list_add(), fileio_page_bitmap_list_destroy(), fileio_page_bitmap_list_find(), fileio_page_bitmap_list_init(), fileio_page_bitmap_set(), fileio_page_check_corruption(), fileio_page_hexa_dump(), fileio_read_pages(), fileio_unlock_la_dbname(), fileio_write_backup_node(), fileio_write_or_add_to_dwb(), fileio_write_pages(), fileio_write_restore(), fill_collection(), fill_in_insert_default_function_arguments(), filter_resolutions(), lockfree::freelist< T >::final_sanity_checks(), HL::ObstackHeap< 0, MallocHeap >::finalize(), lf_hash_table_cpp< Key, T >::find(), find_argument(), find_attribute_op(), find_base64(), find_contr_id(), find_exp_id(), find_instance(), find_lang_locale_data(), cubthread::worker_pool< Context >::core::worker::finish_run(), fixup_self_domain(), flatten_components(), flatten_method_files(), flatten_partition_info(), flatten_query_spec_lists(), flatten_subclasses(), flatten_template(), flatten_trigger_cache(), cubload::server_object_loader::flush_records(), fmt_date_string(), fmt_date_value(), fmt_fractional_value(), fmt_minute_value(), fmt_second_value(), fmt_time_string(), fmt_time_value(), fmt_timestamp_string(), fmt_timestamp_value(), fn_end_tran(), fn_proxy_cas_check_cas(), fn_proxy_cas_prepare(), fn_proxy_cas_prepare_and_execute(), fn_proxy_cas_schema_info(), fn_proxy_client_check_cas(), fn_proxy_client_close_req_handle(), fn_proxy_client_con_close(), fn_proxy_client_conn_error(), fn_proxy_client_cursor(), fn_proxy_client_cursor_close(), fn_proxy_client_end_tran(), fn_proxy_client_fetch(), fn_proxy_client_not_supported(), fn_proxy_client_prepare(), fn_proxy_client_prepare_and_execute(), fn_proxy_client_schema_info(), format_floating_point(), fpcache_claim(), fpcache_cleanup(), fpcache_dump(), fpcache_entry_uninit(), fpcache_remove_by_class(), fpcache_retire(), HL::ObstackHeap< 0, MallocHeap >::free(), lockfree::tran::system::free_index(), free_lang_locale_data(), lockfree::freelist< T >::freelist(), lockfree::hashmap< Key, T >::freelist_claim(), lockfree::hashmap< Key, T >::freelist_retire(), lockfree::hashmap< Key, T >::from_free_node(), gen_outer(), gen_tz(), cubperf::statset_definition::generic_add_stat_values_with_converted_timers(), cubperf::statset_definition::generic_get_stat_values_with_converted_timers(), cubperf::statset_definition::generic_increment(), lf_hash_table_cpp< Key, T >::generic_insert(), cubperf::statset_definition::generic_time(), cubperf::statset_definition::generic_time_and_increment(), genlocale(), record_descriptor::get(), get_access_log_type_string(), PATH_TOKEN::get_array_index(), get_att_default_from_def(), get_att_order_from_def(), cubload::class_entry::get_attribute(), cubload::server_object_loader::get_attribute_db_value(), get_base64_encode_len(), get_ce_list_from_coll_key(), cubload::server_class_installer::get_class_attributes(), get_column_name_argument(), get_cpu_usage_string(), get_cubrid_file(), vacuum_job_cursor::get_current_entry(), get_current_result(), record_descriptor::get_data(), get_data_length(), get_date_weekday(), lockfree::tran::table::get_descriptor(), pr_type::get_disk_size_of_mem(), pr_type::get_disk_size_of_value(), get_domain_internal(), cubload::error_handler::get_driver_lineno(), get_elem_path_token_at(), get_end_of_week_one_of_year(), cubthread::get_entry(), get_expr_fcode_rank(), vacuum_data_page::get_first_blockid(), vacuum_data::get_first_entry(), get_grants(), get_hour_minute_or_second(), vacuum_data_page::get_index_of_blockid(), pr_type::get_index_size_of_mem(), pr_type::get_index_size_of_value(), cubthread::internal_tasks_worker_pool::get_instance(), get_key_with_ce_sublist(), get_loaddb_args(), cublocale::get_locale(), cubthread::get_main_entry(), cubthread::get_manager(), pr_type::get_mem_size_of_mem(), pr_type::get_mem_size_of_value(), cubmem::reference_store< T >::get_mutable(), get_natural_join_attrs_from_pt_spec(), cubthread::worker_pool< Context >::core::worker::get_new_task(), get_next_log_line(), get_num_monitor_items(), get_number_dbval_as_long_double(), PATH_TOKEN::get_object_key(), get_opcode_rank(), get_operand_rank(), vacuum_job_cursor::get_page(), JSON_PATH::get_parent(), lf_hash_table_cpp< Key, T >::get_pthread_mutex(), lockfree::hashmap< Key, T >::get_ptr(), record_descriptor::get_recdes(), lockfree::hashmap< Key, T >::get_ref(), cubload::sa_object_loader::get_rows_number(), get_saving_time_from_offset_rule(), cubload::error_handler::get_scanner_lineno(), get_schema_trigger_objects(), get_select_list_to_update(), get_set_value(), cubmonitor::transaction_sheet_manager::get_sheet(), get_short_elem_name(), get_signatures(), record_descriptor::get_size(), lf_hash_table_cpp< Key, T >::get_size(), get_sql_time_info(), cubthread::waiter::get_stat_name(), cubthread::daemon::get_stat_name(), multi_index_unique_stats::get_stats_of(), get_status_string(), get_string_date_token_id(), cubthread::worker_pool< Context >::core::get_task_or_become_available(), cuberr::context::get_thread_local_context(), get_time(), get_type_value_size(), get_value_from_req_handle(), get_value_from_tset(), get_year_month_or_day(), HL::ObstackHeap< 0, MallocHeap >::getObjectBase(), cubthread::waiter::goto_sleep(), HL::ObstackHeap< 0, MallocHeap >::grow(), ha_argv_to_args(), handle_data(), handle_data_collation_rule(), hash_delete(), hash_destroy(), hash_insert(), lockfree::hashmap< Key, T >::hash_insert_internal(), hash_lookup(), hash_new(), hashpjw(), hb_add_ui_node(), hb_cleanup_conn_and_start_process(), hb_cluster_job_calc_score(), hb_cluster_job_check_ping(), hb_cluster_job_check_valid_ping_server(), hb_cluster_job_demote(), hb_cluster_job_failback(), hb_cluster_job_failover(), hb_cluster_job_heartbeat(), hb_cluster_job_init(), hb_cluster_job_initialize(), hb_deregister_by_args(), hb_deregister_by_pid(), hb_is_deactivation_ready(), hb_pack_server_name(), hb_prepare_deactivate_heartbeat(), hb_register_new_process(), hb_reload_config(), hb_remove_ui_node(), hb_resource_demote_confirm_shutdown_server_proc(), hb_resource_demote_kill_server_proc(), hb_resource_demote_start_shutdown_server_proc(), hb_resource_job_change_mode(), hb_resource_job_cleanup_all(), hb_resource_job_confirm_cleanup_all(), hb_resource_job_confirm_dereg(), hb_resource_job_confirm_start(), hb_resource_job_demote_confirm_shutdown(), hb_resource_job_demote_start_shutdown(), hb_resource_job_initialize(), hb_resource_job_proc_dereg(), hb_resource_job_proc_start(), hb_resource_send_changemode(), hb_start_deactivate_server_info(), hb_thread_check_disk_failure(), hb_valid_result_string(), heap_add_chain_links(), heap_alloc_new_page(), heap_attrinfo_delete_lob(), heap_attrinfo_generate_key(), heap_attrinfo_set(), heap_attrinfo_set_uninitialized(), heap_attrinfo_start(), heap_attrinfo_transform_to_disk_internal(), heap_attrvalue_get_key(), heap_build_forwarding_recdes(), heap_cache_class_info(), heap_capacity_next_scan(), heap_check_all_heaps(), heap_check_all_pages(), heap_check_all_pages_by_heapchain(), heap_check_heap_file(), heap_class_get_partition_info(), heap_classrepr_dump(), heap_classrepr_dump_all(), heap_classrepr_finalize_cache(), heap_classrepr_free(), heap_classrepr_get(), heap_classrepr_restart_cache(), heap_clean_get_context(), heap_clear_operation_context(), heap_compact_pages(), heap_copy_chain(), heap_create_delete_context(), heap_create_insert_context(), heap_create_internal(), heap_create_update_context(), heap_delete_adjust_header(), heap_delete_all_page_records(), heap_delete_bigone(), heap_delete_home(), heap_delete_logical(), heap_delete_physical(), heap_delete_relocation(), heap_does_exist(), heap_dump(), heap_find_location_and_insert_rec_newhome(), heap_fix_forward_page(), heap_fix_header_page(), heap_free_func_pred_unpack_info(), heap_get_bigone_content(), heap_get_btid_from_index_name(), heap_get_capacity(), heap_get_class_oid(), heap_get_class_oid_from_page(), heap_get_class_record(), heap_get_class_tde_algorithm(), heap_get_file_type(), heap_get_header_page(), heap_get_hfid_from_vfid(), heap_get_insert_location_with_lock(), heap_get_last_page(), heap_get_last_version(), heap_get_mvcc_header(), heap_get_mvcc_rec_header_from_overflow(), heap_get_page_with_watcher(), heap_get_partition_attributes(), heap_get_partitions_from_subclasses(), heap_get_record_data_when_all_ready(), heap_get_record_info(), heap_get_record_location(), heap_get_visible_version_from_log(), heap_get_visible_version_internal(), heap_header_capacity_start_scan(), heap_header_next_scan(), heap_hfid_cache_get(), heap_hfid_table_entry_key_compare(), heap_insert_adjust_recdes_header(), heap_insert_handle_multipage_record(), heap_insert_logical(), heap_insert_newhome(), heap_insert_physical(), heap_is_object_not_null(), heap_is_page_header(), heap_is_reusable_oid(), heap_is_valid_oid(), heap_link_watchers(), heap_log_delete_physical(), heap_log_postpone_heap_append_pages(), heap_mark_class_as_modified(), heap_midxkey_get_value(), heap_midxkey_key_generate(), heap_midxkey_key_get(), heap_mvcc_log_delete(), heap_mvcc_log_insert(), heap_mvcc_log_redistribute(), heap_next_internal(), heap_object_upgrade_domain(), heap_page_get_max_mvccid(), heap_page_get_vacuum_status(), heap_page_rv_chain_update(), heap_page_set_vacuum_status_none(), heap_page_update_chain_after_mvcc_op(), heap_prefetch(), heap_prepare_get_context(), heap_prepare_object_page(), heap_reinitialize_page(), heap_remove_page_on_vacuum(), heap_reuse(), heap_rv_mvcc_redo_delete_home(), heap_rv_mvcc_redo_delete_internal(), heap_rv_mvcc_redo_delete_newhome(), heap_rv_mvcc_redo_delete_overflow(), heap_rv_mvcc_redo_insert(), heap_rv_mvcc_redo_redistribute(), heap_rv_mvcc_undo_delete(), heap_rv_mvcc_undo_delete_overflow(), heap_rv_nop(), heap_rv_postpone_append_pages_to_heap(), heap_rv_redo_insert(), heap_rv_redo_newpage(), heap_rv_redo_reuse_page(), heap_rv_redo_reuse_page_reuse_oid(), heap_rv_redo_update_and_update_chain(), heap_rv_undoredo_pagehdr(), heap_rv_undoredo_update(), heap_rv_update_chain_after_mvcc_op(), heap_scan_cache_allocate_area(), heap_scan_cache_allocate_recdes_data(), heap_scan_pb_lock_and_fetch_debug(), heap_scancache_add_partition_node(), heap_scancache_block_allocate(), heap_scancache_quick_end(), heap_scancache_reset_modify(), heap_scancache_start_internal(), heap_set_autoincrement_value(), heap_set_mvcc_rec_header_on_overflow(), heap_stats_add_bestspace(), heap_stats_del_bestspace_by_hfid(), heap_stats_del_bestspace_by_vpid(), heap_stats_find_best_page(), heap_stats_find_page_in_bestspace(), heap_stats_get_second_best(), heap_stats_put_second_best(), heap_stats_sync_bestspace(), heap_stats_update_internal(), heap_unfix_watchers(), heap_update_adjust_recdes_header(), heap_update_and_log_header(), heap_update_bigone(), heap_update_home(), heap_update_logical(), heap_update_physical(), heap_update_relocation(), heap_update_set_prev_version(), heap_vacuum_all_objects(), heap_vpid_alloc(), heap_vpid_init_new(), heap_vpid_remove(), help_print_describe_comment(), hide_cmd_line_args(), hl_clear_lea_heap(), hl_unregister_lea_heap(), ialloc(), trigger_description::init(), class_description::init(), cubload::server_object_loader::init(), cubscan::json_table::scanner::init(), init_batch_rs_structure(), init_builtin_calendar_names(), init_conn_structure(), init_db_attribute_list(), cubload::init_driver(), init_pmeta_structure(), cubthread::worker_pool< Context >::core::init_pool_and_workers(), init_resultset_structure(), init_rmeta_structure(), cubthread::worker_pool< Context >::core::worker::init_run(), init_stmt_structure(), init_tz_name(), init_uca_instance(), init_user_locales(), cubload::driver::initialize(), cubthread::initialize(), initialize_session(), cubthread::initialize_thread_entries(), lockfree::hashmap< Key, T >::insert_given(), insert_subquery_results(), insert_trigger_list(), install_new_representation(), cubregex::instr(), internal_memalign(), intl_back_utf8_to_cp(), intl_backskip_spaces(), intl_binary_to_utf8(), intl_case_match_tok(), intl_char_count(), intl_char_size(), intl_char_tolower_utf8(), intl_char_toupper_utf8(), intl_check_utf8(), intl_cmp_char(), intl_count_euc_bytes(), intl_count_euc_chars(), intl_count_utf8_bytes(), intl_count_utf8_chars(), intl_cp_to_dbcs(), intl_cp_to_utf8(), intl_dbcs_to_cp(), intl_euckr_to_iso88591(), intl_euckr_to_utf8(), intl_fast_iso88591_to_utf8(), intl_identifier_casecmp(), intl_identifier_casecmp_w_size(), intl_identifier_fix(), intl_identifier_lower_string_size(), intl_identifier_mht_1strlowerhash(), intl_identifier_namecmp(), intl_identifier_upper_string_size(), intl_init_conv_iso8859_9_to_utf8(), intl_is_currency_symbol(), intl_is_space(), intl_iso88591_to_euckr(), intl_lower_string(), intl_lower_string_size(), intl_mbs_casecmp(), intl_mbs_chr(), intl_mbs_len(), intl_mbs_ncasecmp(), intl_mbs_ncpy(), intl_mbs_nth(), intl_mbs_spn(), intl_next_char(), intl_nextchar_euc(), intl_pad_char(), intl_prev_char(), intl_prevchar_euc(), intl_put_char(), intl_reverse_string(), intl_skip_spaces(), intl_strcasecmp_utf8_one_cp(), intl_text_dbcs_to_utf8_ext(), intl_text_single_byte_to_utf8_ext(), intl_text_utf8_to_dbcs(), intl_text_utf8_to_single_byte(), intl_tolower_euc(), intl_tolower_iso8859(), intl_tolower_utf8(), intl_toupper_euc(), intl_toupper_iso8859(), intl_toupper_utf8(), intl_upper_string(), intl_upper_string_size(), intl_utf8_to_cp(), intl_utf8_to_cp_list(), intl_utf8_to_euckr(), intl_utf8_to_iso88591(), is_allowed_as_prepared_statement(), is_allowed_as_prepared_statement_with_hv(), JSON_PATH::is_last_array_index_less_than(), vacuum_job_cursor::is_loaded(), is_number(), cubthread::lockfree_hashmap< Key, T >::is_old_type(), is_safe_last_char_for_like_optimization(), is_server_insert_allowed(), pr_type::is_size_computed(), is_str_valid_number(), is_valid_ip_slice(), HL::ObstackHeap< 0, MallocHeap >::isValid(), lockfree::hashmap< Key, T >::iterator::iterate(), javasp_get_error_file(), javasp_get_info_file(), javasp_get_log_file(), JSON_VALIDATOR::JSON_VALIDATOR(), jsp_add_stored_procedure(), jsp_add_stored_procedure_argument(), jsp_alter_stored_procedure(), jsp_do_call_stored_procedure(), jsp_get_return_type(), jsp_pack_string_argument(), jsp_receive_error(), jsp_receive_result(), jsp_start_server(), jsp_unpack_string_value(), key_type_to_string(), ko_date_string(), ko_time_string(), ko_time_value(), la_add_repl_filter(), la_add_repl_item(), la_apply_delete_log(), la_apply_insert_log(), la_apply_log_file(), la_apply_repl_log(), la_apply_statement_log(), la_apply_update_log(), la_assign_recdes_from_pool(), la_check_time_commit(), la_clear_applied_info(), la_delay_replica(), la_delete_ha_apply_info(), la_expand_cache_log_buffer(), la_flush_repl_items(), la_free_all_repl_items(), la_free_all_repl_items_except_head(), la_free_and_add_next_repl_item(), la_free_repl_item(), la_get_avg(), la_get_ha_apply_info(), la_get_item_pk_value(), la_get_log_data(), la_get_next_repl_item_from_log(), la_get_next_update_log(), la_get_overflow_recdes(), la_get_page(), la_init_recdes_pool(), la_log_fetch(), la_log_page_check(), la_log_phypageid(), la_log_record_process(), la_make_room_for_mvcc_insid(), la_need_filter_out(), la_repl_add_object(), la_unlink_repl_item(), la_update_ha_apply_info_start_time(), la_update_last_deleted_arv_num(), lang_back_strmatch_utf8_uca_w_level(), lang_charset(), lang_charset_cubrid_name(), lang_charset_introducer(), lang_charset_name(), lang_check_coll_compat(), lang_check_locale_compat(), lang_currency(), lang_date_format_parse(), lang_db_put_charset(), lang_digit_fractional_symbol(), lang_digit_grouping_symbol(), lang_fastcmp_ko(), lang_free_collations(), lang_get_builtin_lang_id_from_name(), lang_get_codeset_name(), lang_get_collation(), lang_get_collation_by_name(), lang_get_contr_for_string(), lang_get_first_locale_for_lang(), lang_get_lang_id_from_name(), lang_get_Lang_name(), lang_get_lang_name_from_id(), lang_get_specific_locale(), lang_get_uca_back_weight_l13(), lang_get_uca_w_l13(), lang_get_uca_w_l4(), lang_get_w_first_el(), lang_id(), lang_init(), lang_init_coll_en_ci(), lang_init_coll_en_cs(), lang_init_coll_Utf8_tr_cs(), lang_init_console_txt_conv(), lang_initloc_en_binary(), lang_initloc_en_iso88591(), lang_initloc_en_utf8(), lang_initloc_ko_euc(), lang_initloc_ko_iso(), lang_initloc_ko_utf8(), lang_initloc_tr_iso(), lang_initloc_tr_utf8(), lang_load_coll_from_lib(), lang_load_count_coll_from_lib(), lang_load_get_coll_name_from_lib(), lang_load_library(), lang_locale(), lang_locale_currency(), lang_locale_data_load_from_lib(), lang_locale_load_alpha_from_lib(), lang_locale_load_normalization_from_lib(), lang_mht2str_ko(), lang_mht2str_utf8(), lang_mht2str_utf8_exp(), lang_next_alpha_char_iso88591(), lang_next_alpha_char_ko(), lang_next_coll_byte(), lang_next_coll_char_utf8(), lang_next_coll_seq_utf8_w_contr(), lang_set_charset_lang(), lang_set_flag_from_lang(), lang_set_language(), lang_split_key_binary(), lang_split_key_byte(), lang_split_key_euckr(), lang_split_key_iso(), lang_split_key_utf8(), lang_split_key_w_exp(), lang_str_utf8_trail_zero_weights_w_exp(), lang_strmatch_binary(), lang_strmatch_byte(), lang_strmatch_ko(), lang_strmatch_utf8(), lang_strmatch_utf8_uca_w_coll_data(), lang_strmatch_utf8_uca_w_level(), lang_strmatch_utf8_w_contr(), lang_unload_libraries(), lang_user_alphabet_w_coll(), ldr_act_add_class_all_attrs(), ldr_assign_all_perm_oids(), ldr_collection_db_collection(), ldr_elo_ext_elem(), ldr_elo_int_db_elo(), ldr_elo_int_elem(), ldr_exec_query_from_file(), ldr_init(), ldr_json_elem(), ldr_update_statistics(), lockfree::lf_bitmap_destroy(), lockfree::lf_bitmap_free_entry(), lockfree::lf_bitmap_get_entry(), lockfree::lf_bitmap_init(), lf_freelist_alloc_block(), lf_freelist_claim(), lf_freelist_destroy(), lf_freelist_init(), lf_freelist_retire(), lf_freelist_transport(), lf_hash_clear(), lf_hash_create_iterator(), lf_hash_delete_already_locked(), lf_hash_delete_internal(), lf_hash_find(), lf_hash_init(), lf_hash_insert_given(), lf_hash_insert_internal(), lf_hash_iterate(), lf_hash_table_cpp< Key, T >::lf_hash_table_cpp(), lf_io_list_find(), lf_io_list_find_or_insert(), lf_list_delete(), lf_list_find(), lf_list_insert_internal(), lf_stack_pop(), lf_stack_push(), lf_tran_destroy_entry(), lf_tran_end(), lf_tran_request_entry(), lf_tran_return_entry(), lf_tran_start(), lf_tran_system_destroy(), lf_tran_system_init(), li_api_check(), li_api_delete(), li_api_destroy(), li_api_get(), li_api_insert(), li_api_length(), li_api_map(), li_api_set(), li_getf(), li_mapf(), lockfree::hashmap< Key, T >::list_delete(), list_indexer_create(), lockfree::hashmap< Key, T >::list_insert_internal(), vacuum_job_cursor::load(), cubload::session::load_batch(), load_console_conv_data(), load_ducet(), load_unicode_data(), loaddb_install_class(), lob_from_file(), lob_locator_put_meta(), lob_to_bit_char(), local_am(), local_am_pm_value(), local_date_string(), local_date_value(), local_pm(), local_time_string(), local_time_value(), locale_check_and_set_default_files(), locale_check_and_set_shared_data(), locale_check_collation_id(), locale_compile_locale(), locale_compute_coll_checksum(), locale_compute_locale_checksum(), locale_destroy_alphabet_data(), locale_destroy_alphabet_tailoring(), locale_destroy_collation_data(), locale_destroy_collation_tailorings(), locale_destroy_console_conversion(), locale_destroy_data(), locale_dump(), locale_dump_lib_collations(), locale_free_shared_data(), locale_get_cfg_locales(), locale_init_data(), locale_save_alphabets_to_C_file(), locale_save_calendar_to_C_file(), locale_save_collation_data_to_C_file(), locale_save_console_conv_to_C_file(), locale_save_normalization_to_C_file(), locale_save_one_alphabet_to_C_file(), locale_save_to_C_file(), locator_add_class(), locator_add_or_remove_index_internal(), locator_add_to_oidset_when_temp_oid(), locator_allocate_copy_area_by_attr_info(), locator_area_op_to_pruning_type(), locator_assign_oidset(), locator_attribute_info_force(), locator_cache_lock(), locator_cache_lock_lockhint_classes(), locator_cache_lock_set(), locator_can_skip_fetch_from_server(), locator_check_btree_entries(), locator_check_class_names(), locator_check_class_on_heap(), locator_check_foreign_key(), locator_check_primary_key_delete(), locator_check_primary_key_update(), locator_check_unique_btree_entries(), locator_create_heap_if_needed(), locator_decide_operation_type(), locator_decr_num_transient_classnames(), locator_defence_drop_class_name_entry(), locator_delete_force_internal(), locator_delete_lob_force(), locator_drop_class_name_entry(), locator_drop_transient_class_name_entries(), locator_dump_class_names(), locator_eval_filter_predicate(), locator_fetch(), locator_fetch_mode_to_lock(), locator_filter_errid(), locator_finalize(), locator_find_class_by_oid(), locator_force_drop_class_name_entry(), locator_force_for_multi_update(), locator_fun_get_all_mops(), locator_generate_class_pseudo_oid(), locator_get_lock_mode_from_op_type(), locator_get_num_transient_classnames(), locator_get_object(), locator_get_reserved_class_name_oid(), locator_guess_sub_classes(), locator_incr_num_transient_classnames(), locator_initialize(), locator_insert_force(), locator_is_exist_class_name_entry(), locator_keep_mops(), locator_lock(), locator_lock_and_doesexist(), locator_lock_and_get_object_internal(), locator_lock_and_get_object_with_evaluation(), locator_lock_and_return_object(), locator_lock_class_of_instance(), locator_lock_nested(), locator_lock_set(), locator_lockhint_classes(), locator_manyobj_flag_remove(), locator_mflush(), locator_mflush_end(), locator_mflush_force(), locator_mflush_initialize(), locator_mflush_reallocate_copy_area(), locator_mflush_reset(), locator_move_record(), locator_multi_insert_force(), locator_mvcc_reev_cond_and_assignment(), locator_notify_decache(), locator_pack_copy_area_descriptor(), locator_permoid_class_name(), locator_print_class_name(), locator_repl_force(), locator_repl_mflush(), locator_repl_mflush_force(), locator_repl_prepare_force(), locator_savepoint_class_name_entry(), locator_savepoint_transient_class_name_entries(), locator_send_copy_area(), locator_update_force(), locator_update_index(), lock_add_composite_lock(), lock_demote_class_lock(), lock_detect_local_deadlock(), lockfree::hashmap< Key, T >::lock_entry_mutex(), lock_force_thread_timeout_lock(), lock_force_timeout_expired_wait_transactions(), lock_get_class_lock(), lock_initialize(), lock_notify_isolation_incons(), lock_object(), lock_rep_read_tran(), lock_scan(), lock_stop_instant_lock_mode(), lock_subclasses_internal(), lock_unlock_all(), lock_unlock_all_shared_get_all_exclusive(), lock_unlock_object(), lock_unlock_objects_lock_set(), lock_wait_state_to_string(), lockhint_subclasses(), log_2pc_attach_global_tran(), log_2pc_get_global_tran_info(), log_2pc_prepare_global_tran(), log_2pc_recovery_prepared(), log_abort(), log_abort_partial(), log_active_log_header_next_scan(), log_active_log_header_start_scan(), log_add_to_modified_class_list(), log_append_compensate_internal(), log_append_compensate_with_undo_nxlsa(), log_append_dboutside_redo(), log_append_empty_record(), log_append_ha_server_state(), log_append_postpone(), log_append_redo_crumbs(), log_append_redo_data(), log_append_redo_data2(), log_append_repl_info_internal(), log_append_run_postpone(), log_append_savepoint(), log_append_sysop_end(), log_append_undo_crumbs(), log_append_undo_data(), log_append_undo_data2(), log_append_undoredo_crumbs(), log_append_undoredo_data(), log_append_undoredo_data2(), log_archive_log_header_next_scan(), log_archive_log_header_start_scan(), log_bind_value(), log_can_skip_undo_logging(), log_commit(), log_complete(), log_complete_for_2pc(), log_create_internal(), LOG_CS_DEMOTE(), LOG_CS_ENTER(), LOG_CS_ENTER_READ_MODE(), LOG_CS_EXIT(), LOG_CS_PROMOTE(), log_diff(), log_do_postpone(), log_does_active_user_exist(), log_does_allow_replication(), log_dump_record_sysop_end_internal(), log_execute(), log_execute_run_postpone(), log_get_checkpoint_interval(), log_get_log_group_commit_interval(), log_get_undo_record(), log_initialize_internal(), log_is_class_being_modified(), log_is_log_flush_daemon_available(), log_is_page_of_record_broken(), log_pageid_hash(), log_prior_has_worker_log_records(), log_prior_lsa_append_add_align(), log_prior_lsa_append_advance_when_doesnot_fit(), log_prior_lsa_append_align(), log_read_sysop_start_postpone(), log_recovery(), log_recovery_abort_all_atomic_sysops(), log_recovery_abort_atomic_sysop(), log_recovery_abort_interrupted_sysop(), log_recovery_analysis(), log_recovery_find_first_postpone(), log_recovery_finish_all_postpone(), log_recovery_finish_postpone(), log_recovery_finish_sysop_postpone(), log_recovery_needs_skip_logical_redo(), log_recovery_redo(), log_recovery_resetlog(), log_recovery_undo(), log_replay(), log_rollback(), log_rollback_record(), log_rv_analysis_end_checkpoint(), log_rv_analysis_record(), log_rv_analysis_run_postpone(), log_rv_analysis_sysop_end(), log_rv_analysis_sysop_start_postpone(), log_rv_copy_char(), log_rv_end_simulation(), log_rv_pack_redo_record_changes(), log_rv_pack_undo_record_changes(), log_rv_record_modify_internal(), log_rv_redo_fix_page(), log_rv_simulate_runtime_worker(), log_rv_undo_record(), log_rv_undoredo_record_partial_changes(), log_skip_logging_set_lsa(), log_sysop_commit_internal(), log_sysop_do_postpone(), log_sysop_end_begin(), log_sysop_end_final(), log_sysop_end_logical_undo(), log_sysop_end_type_string(), log_sysop_start(), log_sysop_start_atomic(), log_to_string(), log_tran_do_postpone(), log_unzip(), log_update_global_btid_online_index_stats(), log_zip(), log_zip_alloc(), log_zip_free(), logddl_make_copy_dir(), logddl_make_copy_filename(), logddl_make_filename(), logddl_timeval_diff(), logpb_add_archive_page_info(), logpb_append_crumbs(), logpb_append_data(), logpb_append_prior_lsa_list(), logpb_archive_active_log(), logpb_background_archiving(), logpb_backup(), logpb_checkpoint(), logpb_compute_page_checksum(), logpb_copy_log_header(), logpb_copy_page(), logpb_copy_page_from_file(), logpb_copy_page_from_log_buffer(), logpb_create_header_page(), logpb_debug_check_log_page(), logpb_dump(), logpb_dump_log_page_area(), logpb_end_append(), logpb_fetch_from_archive(), logpb_fetch_header(), logpb_fetch_header_from_active_log(), logpb_fetch_header_with_buffer(), logpb_fetch_page(), logpb_fetch_start_append_page(), logpb_fetch_start_append_page_new(), logpb_finalize_pool(), logpb_find_header_parameters(), logpb_find_oldest_available_arv_num(), logpb_find_oldest_available_page_id(), logpb_flush_all_append_pages(), logpb_flush_header(), logpb_flush_log_for_wal(), logpb_flush_page(), logpb_flush_pages(), logpb_flush_pages_direct(), logpb_get_archive_num_from_info_table(), logpb_get_guess_archive_num(), logpb_get_log_buffer(), logpb_get_tde_algorithm(), logpb_initialize_flush_info(), logpb_initialize_header(), logpb_initialize_pool(), logpb_invalid_all_append_pages(), logpb_invalidate_pool(), logpb_is_any_dirty(), logpb_is_archive_available(), logpb_is_dirty(), logpb_is_pool_initialized(), logpb_last_complete_blockid(), logpb_locate_page(), logpb_next_append_page(), logpb_page_check_corruption(), logpb_page_get_first_null_block_lsa(), logpb_page_has_valid_checksum(), logpb_peek_header_of_active_log_from_backup(), logpb_prior_lsa_append_all_list(), logpb_read_page_from_active_log(), logpb_read_page_from_file(), logpb_remove_archive_logs(), logpb_remove_archive_logs_exceed_limit(), logpb_restore(), logpb_set_page_checksum(), logpb_set_tde_algorithm(), logpb_set_unavailable_archive(), logpb_start_append(), logpb_to_physical_pageid(), logpb_write_page_to_disk(), logpb_write_toflush_pages_to_archive(), logtb_assign_subtransaction_mvccid(), logtb_check_class_for_rr_isolation_err(), logtb_check_kill_tran_auth(), logtb_clear_tdes(), logtb_complete_mvcc(), logtb_complete_sub_mvcc(), logtb_define_trantable_log_latch(), logtb_delete_global_unique_stats(), logtb_descriptors_start_scan(), logtb_finalize_tdes(), logtb_find_interrupt(), logtb_find_tran_index(), logtb_find_wait_msecs(), logtb_get_current_mvccid(), logtb_get_current_tran_index(), logtb_get_global_unique_stats(), logtb_get_global_unique_stats_entry(), logtb_get_mvcc_snapshot(), logtb_get_new_subtransaction_mvccid(), logtb_get_new_tran_id(), logtb_get_pack_tran_table(), logtb_get_system_tdes(), logtb_get_trans_info(), logtb_initialize_tdes(), logtb_is_current_active(), logtb_is_current_mvccid(), logtb_is_interrupted_tdes(), logtb_rv_assign_mvccid_for_undo_recovery(), logtb_rv_find_allocate_tran_index(), logtb_set_check_interrupt(), logtb_set_tran_index_interrupt(), logtb_tran_create_btid_unique_stats(), logtb_tran_find_class_cos(), logtb_tran_update_stats_online_index_rb(), logtb_undefine_trantable(), logwr_check_page_checksum(), logwr_get_log_pages(), logwr_log_ha_filestat_to_string(), cubthread::looper::looper(), LSA_COPY(), LSA_EQ(), LSA_GE(), LSA_GT(), LSA_ISNULL(), LSA_LE(), LSA_LT(), LSA_SET_NULL(), ltrim(), mvcc_active_tran::ltrim_area(), main(), make_coll_key(), make_cst_item_value(), make_desired_string_db_value(), make_error_log_filename(), make_mergelist_proc(), make_proxy_log_filename(), make_sql_log_filename(), HL::ObstackHeap< 0, MallocHeap >::malloc(), log_system_tdes::map_all_tdes(), regu_variable_node::map_regu(), PATH_TOKEN::match_pattern(), JSON_PATH::match_pattern(), metadata_monitor(), mht_1str_pseudo_key(), mht_1strhash(), mht_1strlowerhash(), mht_2str_pseudo_key(), mht_2strhash(), mht_3str_pseudo_key(), mht_3strhash(), mht_4str_pseudo_key(), mht_4strhash(), mht_5str_pseudo_key(), mht_adjust_lru_list(), mht_clear(), mht_clear_hls(), mht_count(), mht_create(), mht_create_hls(), mht_destroy(), mht_destroy_hls(), mht_dump(), mht_dump_hls(), mht_get(), mht_get2(), mht_get_hls(), mht_map(), mht_map_no_key(), mht_numhash(), mht_ptrhash(), mht_put(), mht_put2_internal(), mht_put2_new(), mht_put_data(), mht_put_hls(), mht_put_hls_internal(), mht_put_if_not_exists(), mht_put_internal(), mht_put_new(), mht_rem(), mht_rem2(), ml_add(), ml_append(), ml_ext_add(), mmap_alloc(), record_descriptor::move_data(), mq_bump_order_dep_corr_lvl_pre(), mq_check_authorization_path_entities(), mq_check_delete(), mq_check_rewrite_select(), mq_check_using_index(), mq_check_vclass_for_insert(), mq_class_lambda(), mq_copy_view_error_msgs(), mq_get_attribute(), mq_get_expression(), mq_invert_assign(), mq_invert_insert_subquery(), mq_invert_subqueries(), mq_is_outer_join_spec(), mq_is_pushable_subquery(), mq_mark_location(), mq_push_dot_in_query(), mq_reset_ids(), mq_rewrite_upd_del_top_level_specs(), mq_set_types(), mq_set_union_query(), mq_substitute_select_in_statement(), mq_substitute_subquery_in_statement(), mq_translate_insert(), mq_translate_local(), mq_translate_tree(), mq_update_attribute(), mq_update_order_by(), mr_cmpdisk_bit_internal(), mr_cmpval_char(), mr_cmpval_json(), mr_cmpval_nchar(), mr_cmpval_object(), mr_cmpval_string(), mr_cmpval_varnchar(), mr_data_cmpdisk_bigint(), mr_data_cmpdisk_bit(), mr_data_cmpdisk_char(), mr_data_cmpdisk_date(), mr_data_cmpdisk_datetime(), mr_data_cmpdisk_double(), mr_data_cmpdisk_elo(), mr_data_cmpdisk_enumeration(), mr_data_cmpdisk_error(), mr_data_cmpdisk_float(), mr_data_cmpdisk_int(), mr_data_cmpdisk_midxkey(), mr_data_cmpdisk_money(), mr_data_cmpdisk_nchar(), mr_data_cmpdisk_null(), mr_data_cmpdisk_numeric(), mr_data_cmpdisk_object(), mr_data_cmpdisk_oid(), mr_data_cmpdisk_ptr(), mr_data_cmpdisk_resultset(), mr_data_cmpdisk_sequence(), mr_data_cmpdisk_set(), mr_data_cmpdisk_short(), mr_data_cmpdisk_string(), mr_data_cmpdisk_sub(), mr_data_cmpdisk_time(), mr_data_cmpdisk_timestamptz(), mr_data_cmpdisk_utime(), mr_data_cmpdisk_varbit(), mr_data_cmpdisk_variable(), mr_data_cmpdisk_varnchar(), mr_data_cmpdisk_vobj(), mr_data_lengthmem_bit(), mr_data_lengthmem_char(), mr_data_lengthmem_elo(), mr_data_lengthmem_nchar(), mr_data_lengthval_bit(), mr_data_readmem_bit(), mr_data_readmem_char(), mr_data_readmem_json(), mr_data_readval_elo(), mr_data_writemem_bit(), mr_data_writemem_char(), mr_data_writemem_elo(), mr_data_writeval_json(), mr_getmem_bit(), mr_getmem_char(), mr_getmem_elo(), mr_getmem_multiset(), mr_getmem_nchar(), mr_getmem_object(), mr_getmem_sequence(), mr_getmem_set(), mr_getmem_string(), mr_getmem_varbit(), mr_getmem_varnchar(), mr_index_cmpdisk_bigint(), mr_index_cmpdisk_bit(), mr_index_cmpdisk_char(), mr_index_cmpdisk_date(), mr_index_cmpdisk_datetime(), mr_index_cmpdisk_double(), mr_index_cmpdisk_enumeration(), mr_index_cmpdisk_float(), mr_index_cmpdisk_int(), mr_index_cmpdisk_midxkey(), mr_index_cmpdisk_money(), mr_index_cmpdisk_nchar(), mr_index_cmpdisk_numeric(), mr_index_cmpdisk_object(), mr_index_cmpdisk_oid(), mr_index_cmpdisk_short(), mr_index_cmpdisk_string(), mr_index_cmpdisk_time(), mr_index_cmpdisk_timestamptz(), mr_index_cmpdisk_utime(), mr_index_cmpdisk_varbit(), mr_index_cmpdisk_varnchar(), mr_index_lengthmem_bit(), mr_index_lengthmem_char(), mr_index_lengthmem_midxkey(), mr_index_lengthmem_nchar(), mr_index_lengthmem_string(), mr_index_readval_datetime(), mr_index_readval_datetimeltz(), mr_index_readval_datetimetz(), mr_index_readval_midxkey(), mr_index_writeval_datetime(), mr_index_writeval_datetimetz(), mr_index_writeval_oid(), mr_index_writeval_timestamptz(), mr_initmem_bit(), mr_initmem_char(), mr_initmem_json(), mr_initmem_nchar(), mr_initmem_numeric(), mr_initval_elo(), mr_readval_bit_internal(), mr_readval_char_internal(), mr_readval_nchar_internal(), mr_readval_string_internal(), mr_readval_varnchar_internal(), mr_setmem_bit(), mr_setmem_char(), mr_setmem_json(), mr_setmem_string(), mr_setmem_varbit(), mr_setmem_varnchar(), mr_setval_bit(), mr_setval_char(), mr_setval_elo(), mr_setval_enumeration(), mr_setval_enumeration_internal(), mr_setval_midxkey(), mr_setval_nchar(), mr_setval_numeric(), mr_setval_set_internal(), mr_setval_string(), mr_setval_varbit(), mr_setval_varnchar(), mr_writeval_bit_internal(), mr_writeval_string_internal(), mr_writeval_varnchar_internal(), msleep(), munmap_is_to_be_called(), mvcc_is_active_id(), mvcc_is_id_in_snapshot(), mvcc_is_not_deleted_for_snapshot(), mvcc_satisfies_delete(), mvcc_satisfies_dirty(), mvcc_satisfies_snapshot(), natural_join_equal_attr(), need_to_abort_tran(), net_buf_cp_cas_type_and_charset(), net_buf_error_msg_set(), net_client_recv_copyarea(), net_client_request_2recv_copyarea(), net_client_request_3_data_recv_copyarea(), net_client_request_no_reply(), net_client_request_with_callback(), net_error_append_shard_info(), net_server_conn_down(), net_server_request(), net_server_start(), net_write_error(), netcl_spacedb(), netsr_spacedb(), netval_to_dbval(), new_collation_cubrid_rule(), new_collation_rule(), new_contraction(), new_expansion(), new_locale_collation(), new_transform_rule(), JSON_OBJECT_ITERATOR::next(), JSON_ARRAY_ITERATOR::next(), btree_insert_list::next_key(), cubscan::json_table::scanner::next_scan(), nlist_add(), nlist_append(), cubload::session::notify_batch_done(), cubload::session::notify_batch_done_and_register_tran_end(), cubload::load_task::notify_done(), cubload::load_task::notify_done_and_tran_end(), number_to_char(), numeric_add_dec_str(), numeric_coerce_big_num_to_dec_str(), numeric_coerce_num_to_dec_str(), numeric_copy_long(), numeric_db_value_coerce_from_num(), numeric_db_value_print(), numeric_get_fractional_part(), numeric_get_integral_part(), numeric_get_pow_of_10(), numeric_get_pow_of_2(), obj_desc_get(), obj_desc_set(), obj_find_object_by_pkey(), obj_get_att(), obj_set_att(), obj_set_shared(), object_to_trigger(), HL::ObstackHeap< 0, MallocHeap >::objectSize(), HL::ObstackHeap< 0, MallocHeap >::ObstackHeap(), obt_apply_assignments(), obt_area_init(), obt_assign(), obt_assign_obt(), obt_desc_set(), obt_final_check(), obt_populate_known_arguments(), obt_reset_force_flush(), obt_retain_after_finish(), obt_set(), obt_set_force_flush(), obt_update_internal(), oid_is_system_class(), vacuum_worker_context_manager::on_create(), vacuum_master_context_manager::on_daemon_create(), vacuum_master_context_manager::on_daemon_retire(), cubsync::critical_section_tracker::on_enter_as_reader(), vacuum_worker_context_manager::on_retire(), log_system_tdes::on_sysop_end(), log_system_tdes::on_sysop_start(), online_index_builder(), cubscan::json_table::scanner::open(), string_buffer::operator()(), string_buffer::operator+=(), opool_create(), opool_destroy(), opool_get_object_resultset(), opool_ght_keyf(), opool_ht_comparef(), opool_ht_hashf(), opool_ht_keyf(), opool_oid_delete(), optimize_coll_contractions(), or_class_get_partition_info(), or_class_hfid(), or_class_rep_dir(), or_class_tde_algorithm(), or_create(), or_destroy(), or_find_diskattr(), or_get_all_representation(), or_get_attr_string(), or_get_classrep(), or_get_classrep_noindex(), or_get_constraint_comment(), or_get_current_representation(), or_get_domain_internal(), or_get_enumeration(), or_get_hierarchy_helper(), or_get_json_validator(), or_get_mvccid(), or_get_offset_internal(), or_get_old_representation(), or_get_unique_hierarchy(), or_get_varchar_compression_lengths(), or_install_btids_class(), or_install_btids_constraint(), or_install_btids_foreign_key(), or_install_btids_foreign_key_ref(), or_install_btids_prefix_length(), or_mvcc_add_header(), or_mvcc_get_chn(), or_mvcc_get_delid(), or_mvcc_get_flag(), or_mvcc_get_header(), or_mvcc_get_prev_version_lsa(), or_mvcc_set_chn(), or_mvcc_set_delid(), or_mvcc_set_flag(), or_mvcc_set_header(), or_mvcc_set_log_lsa_to_record(), or_mvcc_set_prev_version_lsa(), or_pack_method_sig_list(), or_pack_oid_array(), or_pack_query_format(), or_pack_sha1(), or_put_domain(), or_put_offset_internal(), or_put_varchar_internal(), or_rep_id(), or_res_bind_create(), or_res_bind_destroy(), or_res_bind_destroyf(), or_rm_bind_create(), or_rm_bind_destroy(), or_rm_bind_destroyf(), or_unpack_method_sig_list(), or_unpack_mvccid(), or_unpack_sha1(), or_unpack_spacedb(), orc_diskrep_from_record(), orc_subclasses_from_record(), orc_superclasses_from_record(), orp_api_destroy(), orp_api_get_object_resultset(), orp_ht_comparef(), orp_ht_hashf(), orp_ht_keyf(), orp_oid_delete(), orp_oid_get_classname(), os_send_signal(), overflow_get_first_page_data(), overflow_insert(), overflow_update(), cubpacking::packer::pack_db_value(), cubpacking::packer::pack_small_string(), cubload::driver::parse(), parse_bigint(), parse_date_separated(), cubload::load_args::parse_ignore_class_file(), parse_int(), parse_mtime_separated(), parse_time_string(), parse_tzd(), parser_free_parser(), parser_generate_do_stmt_xasl(), parser_generate_xasl(), parser_generate_xasl_post(), parser_generate_xasl_proc(), parser_init_node(), parser_print_function_index_expr(), parser_reinit_node(), partition_cache_entry_to_pruning_context(), partition_cache_pruning_context(), partition_clear_pruning_context(), partition_find_inherited_btid(), partition_find_partition_for_record(), partition_get_attribute_id(), partition_get_value_from_key(), partition_get_value_from_regu_var(), partition_init_pruning_context(), partition_load_aggregate_helper(), partition_load_context_from_cache(), partition_load_partition_predicate(), partition_load_pruning_context(), partition_match_pred_expr(), partition_prune_heap_scan(), partition_prune_index_scan(), partition_prune_insert(), partition_prune_partition_index(), partition_prune_spec(), partition_prune_update(), partition_pruning_context_to_cache_entry(), partition_set_cache_info_for_expr(), peekmem_elo(), perfmon_add_stat_at_offset(), perfmon_calc_diff_stats(), perfmon_finalize(), perfmon_initialize(), perfmon_per_daemon_stat_count(), perfmon_print_timer_to_buffer(), perfmon_print_timer_to_file(), perfmon_server_calc_stats(), perfmon_server_dump_stats_to_buffer(), perfmon_stat_dump_in_buffer_fix_page_array_stat(), perfmon_stat_dump_in_buffer_flushed_block_volumes_array_stat(), perfmon_stat_dump_in_buffer_mvcc_snapshot_array_stat(), perfmon_stat_dump_in_buffer_obj_lock_array_stat(), perfmon_stat_dump_in_buffer_page_hold_time_array_stat(), perfmon_stat_dump_in_buffer_page_lock_time_array_stat(), perfmon_stat_dump_in_buffer_promote_page_array_stat(), perfmon_stat_dump_in_buffer_snapshot_array_stat(), perfmon_stat_dump_in_buffer_thread_daemon_stats(), perfmon_stat_dump_in_buffer_thread_stats(), perfmon_stat_dump_in_buffer_unfix_page_array_stat(), perfmon_stat_dump_in_file_fix_page_array_stat(), perfmon_stat_dump_in_file_flushed_block_volumes_array_stat(), perfmon_stat_dump_in_file_mvcc_snapshot_array_stat(), perfmon_stat_dump_in_file_obj_lock_array_stat(), perfmon_stat_dump_in_file_page_hold_time_array_stat(), perfmon_stat_dump_in_file_page_lock_time_array_stat(), perfmon_stat_dump_in_file_promote_page_array_stat(), perfmon_stat_dump_in_file_snapshot_array_stat(), perfmon_stat_dump_in_file_thread_daemon_stats(), perfmon_stat_dump_in_file_thread_stats(), perfmon_stat_dump_in_file_unfix_page_array_stat(), perfmon_thread_daemon_name(), pgbuf_add_bufptr_to_batch(), pgbuf_add_fixed_at(), pgbuf_add_vpid_to_aout_list(), pgbuf_add_watch_instance_internal(), pgbuf_adjust_quotas(), pgbuf_allocate_bcb(), pgbuf_allocate_thrd_holder_entry(), pgbuf_assign_direct_victim(), pgbuf_assign_private_lru(), pgbuf_attach_watcher_debug(), pgbuf_bcb_change_zone(), pgbuf_bcb_flush_with_wal(), pgbuf_bcb_get_lru_index(), pgbuf_bcb_is_hot(), pgbuf_bcb_register_avoid_deallocation(), pgbuf_bcb_register_fix(), pgbuf_bcb_register_hit_for_lru(), pgbuf_bcb_safe_flush_internal(), pgbuf_bcb_set_dirty(), pgbuf_bcb_should_avoid_deallocation(), pgbuf_bcb_unregister_avoid_deallocation(), pgbuf_bcb_update_flags(), pgbuf_block_bcb(), pgbuf_check_bcb_page_vpid(), pgbuf_check_page_ptype_internal(), pgbuf_claim_bcb_for_fix(), pgbuf_compute_lru_vict_target(), pgbuf_copy_from_area(), pgbuf_dealloc_page(), pgbuf_delete_from_hash_chain(), pgbuf_find_thrd_holder(), pgbuf_fix_debug(), pgbuf_fix_if_not_deallocated_with_caller(), pgbuf_flush_all_helper(), pgbuf_flush_checkpoint(), pgbuf_flush_if_requested(), pgbuf_flush_neighbor_safe(), pgbuf_flush_seq_list(), pgbuf_flush_victim_candidates(), pgbuf_flush_with_wal(), pgbuf_get_fix_count(), pgbuf_get_groupid_and_unfix(), pgbuf_get_holder(), pgbuf_get_page_flush_interval(), pgbuf_get_page_id(), pgbuf_get_page_ptype(), pgbuf_get_tde_algorithm(), pgbuf_get_victim(), pgbuf_get_victim_from_lru_list(), pgbuf_get_volume_label(), pgbuf_has_any_non_vacuum_waiters(), pgbuf_has_any_waiters(), pgbuf_has_prevent_dealloc(), pgbuf_initialize(), pgbuf_initialize_lock_table(), pgbuf_initialize_lru_list(), pgbuf_initialize_thrd_holder(), pgbuf_invalidate_bcb(), pgbuf_invalidate_debug(), pgbuf_is_page_fixed_by_thread(), pgbuf_is_valid_page(), pgbuf_is_valid_page_ptr(), pgbuf_latch_bcb_upon_fix(), pgbuf_latch_idle_page(), pgbuf_lfcq_get_victim_from_private_lru(), pgbuf_lfcq_get_victim_from_shared_lru(), pgbuf_lock_page(), pgbuf_log_new_page(), pgbuf_log_redo_new_page(), pgbuf_lru_add_bcb_to_bottom(), pgbuf_lru_add_bcb_to_middle(), pgbuf_lru_add_bcb_to_top(), pgbuf_lru_add_new_bcb_to_bottom(), pgbuf_lru_add_new_bcb_to_middle(), pgbuf_lru_add_new_bcb_to_top(), pgbuf_lru_adjust_zone1(), pgbuf_lru_adjust_zone2(), pgbuf_lru_adjust_zones(), pgbuf_lru_advance_victim_hint(), pgbuf_lru_boost_bcb(), pgbuf_lru_fall_bcb_to_zone_3(), pgbuf_lru_list_from_bcb(), pgbuf_lru_move_from_private_to_shared(), pgbuf_lru_remove_bcb(), pgbuf_lru_sanity_check(), pgbuf_move_bcb_to_bottom_lru(), pgbuf_ordered_fix_debug(), pgbuf_ordered_unfix_debug(), pgbuf_promote_read_latch_debug(), pgbuf_put_bcb_into_invalid_list(), pgbuf_remove_from_lru_list(), pgbuf_remove_thrd_holder(), pgbuf_remove_watcher(), pgbuf_replace_watcher_debug(), pgbuf_rv_dealloc_undo(), pgbuf_rv_dealloc_undo_compensate(), pgbuf_rv_flush_page(), pgbuf_rv_flush_page_dump(), pgbuf_rv_new_page_redo(), pgbuf_rv_set_tde_algorithm(), pgbuf_scan_bcb_table(), pgbuf_set_bcb_page_vpid(), pgbuf_set_dirty(), pgbuf_set_dirty_buffer_ptr(), pgbuf_set_lsa(), pgbuf_set_lsa_as_temporary(), pgbuf_set_page_ptype(), pgbuf_set_tde_algorithm(), pgbuf_start_scan(), pgbuf_unfix_all(), pgbuf_unfix_debug(), pgbuf_unlatch_bcb_upon_unfix(), pgbuf_unlatch_thrd_holder(), pgbuf_unlatch_void_zone_bcb(), pgbuf_victimize_bcb(), pgbuf_wakeup_page_flush_daemon(), pmeta_destroyf(), pmeta_get_info_internal(), cuberr::context::pop_error_stack(), populate_auto_increment(), populate_defaults(), pp_attr_str(), pp_get_input_size(), pp_get_output_size(), pp_get_precision(), pp_get_type(), pp_pop_spec_scope(), pp_switch_to_descriptor(), pr_area_init(), pr_clear_value(), pr_data_compress_string(), pr_data_writeval_disk_size(), pr_get_compressed_data_from_buffer(), pr_get_compression_length(), pr_get_size_and_write_string_to_buffer(), pr_index_writeval_disk_size(), pr_midxkey_add_elements(), pr_midxkey_add_prefix(), pr_midxkey_common_prefix(), pr_midxkey_compare(), pr_midxkey_compare_element(), pr_midxkey_element_disk_size(), pr_midxkey_get_element_internal(), pr_midxkey_get_element_offset(), pr_midxkey_unique_prefix(), pr_value_mem_size(), pr_write_compressed_string_to_buffer(), pr_write_uncompressed_string_to_buffer(), prepare_and_execute_query(), btree_insert_list::prepare_list(), prepare_mvcc_reev_data(), prepare_query(), prepend_alloc(), print_debug_data_content(), print_debug_end_el(), print_debug_start_el(), print_log_msg(), print_monitor_header(), print_monitor_items(), print_string_date_token(), print_title(), print_value(), prior_lsa_alloc_and_copy_data(), prior_lsa_copy_redo_crumbs_to_node(), prior_lsa_copy_undo_crumbs_to_node(), prior_lsa_gen_record(), prior_lsa_gen_undoredo_record_from_crumbs(), prior_lsa_next_record_internal(), prior_lsa_remove_prior_list(), prior_update_header_mvcc_info(), cubmem::private_block_allocate(), cubmem::private_heap_allocate(), cubmem::private_heap_deallocate(), prm_check_range(), prm_compound_has_changed(), prm_file_has_been_loaded(), prm_get_bigint_value(), prm_get_bool_value(), prm_get_float_value(), prm_get_integer_list_value(), prm_get_integer_value(), prm_get_name(), prm_get_string_value(), prm_get_value(), prm_print(), prm_set_bigint_value(), prm_set_bool_value(), prm_set_compound(), prm_set_float_value(), prm_set_integer_list_value(), prm_set_integer_value(), prm_set_string_value(), prm_tune_parameters(), cubload::server_object_loader::process_collection_constant(), process_heartbeat_util(), process_object(), process_request(), process_value(), lockfree::hashmap< Key, T >::promote_tran_force(), proxy_cas_alloc_anything(), proxy_cas_alloc_by_ctx(), proxy_cas_alloc_by_shard_and_cas_id(), proxy_cas_execute_internal(), proxy_cas_io_find_by_fd(), proxy_cas_io_free(), proxy_cas_io_free_by_ctx(), proxy_cas_io_initialize(), proxy_cas_io_new(), proxy_cas_io_write(), proxy_cas_release_by_ctx(), proxy_check_authorization(), proxy_client_add_waiter_by_shard(), proxy_client_check_waiter_and_wakeup(), proxy_client_execute_internal(), proxy_client_io_find_by_fd(), proxy_client_io_free(), proxy_client_io_write(), proxy_context_clear(), proxy_context_clear_error(), proxy_context_find_by_socket_client_io(), proxy_context_free(), proxy_context_free_client(), proxy_context_free_shard(), proxy_context_free_stmt(), proxy_context_new(), proxy_context_send_error(), proxy_context_set_error(), proxy_context_set_in_tran(), proxy_context_set_out_tran(), proxy_context_timeout(), proxy_convert_error_code(), proxy_event_alloc_buffer(), proxy_event_free(), proxy_event_io_read_complete(), proxy_event_realloc_buffer(), proxy_event_set_buffer(), proxy_event_set_context(), proxy_event_set_shard(), proxy_event_set_type_from(), proxy_find_idle_cas_by_conn_info(), proxy_get_driver_info_by_ctx(), proxy_get_driver_info_by_fd(), proxy_get_range_by_param(), proxy_get_shard_id(), proxy_handler_is_cas_in_tran(), proxy_handler_process_cas_conn_error(), proxy_handler_process_cas_error(), proxy_handler_process_cas_event(), proxy_handler_process_cas_response(), proxy_handler_process_client_conn_error(), proxy_handler_process_client_event(), proxy_handler_process_client_request(), proxy_handler_process_client_wakeup_by_shard(), proxy_handler_process_client_wakeup_by_statement(), proxy_init_net_buf(), proxy_io_buffer_clear(), proxy_io_initialize(), proxy_io_make_check_cas(), proxy_io_make_client_dbinfo_ok(), proxy_io_make_client_proxy_alive(), proxy_io_make_close_req_handle_ok(), proxy_io_make_end_tran_request(), proxy_io_make_error_msg(), proxy_io_make_ex_get_int(), proxy_io_make_get_db_version(), proxy_io_make_shard_info(), proxy_io_process(), proxy_io_set_established_by_ctx(), proxy_log_backup(), proxy_process_cas_conn_error(), proxy_process_cas_message(), proxy_process_cas_read_error(), proxy_process_cas_register(), proxy_process_cas_response(), proxy_process_client_conn_error(), proxy_process_client_message(), proxy_process_client_read_error(), proxy_process_client_register(), proxy_process_client_request(), proxy_send_request_to_cas(), proxy_send_request_to_cas_with_new_event(), proxy_set_con_status_in_tran(), proxy_set_con_status_out_tran(), proxy_set_conn_info(), proxy_set_force_out_tran(), proxy_socket_io_add(), proxy_socket_io_clear(), proxy_socket_io_delete(), proxy_socket_io_find(), proxy_socket_io_read(), proxy_socket_io_read_error(), proxy_socket_io_read_from_cas(), proxy_socket_io_read_from_cas_first(), proxy_socket_io_read_from_cas_next(), proxy_socket_io_read_from_client(), proxy_socket_io_read_from_client_first(), proxy_socket_io_read_from_client_next(), proxy_socket_io_read_internal(), proxy_socket_io_write(), proxy_socket_io_write_error(), proxy_socket_io_write_internal(), proxy_socket_io_write_to_cas(), proxy_socket_io_write_to_client(), proxy_socket_set_write_event(), proxy_unset_force_out_tran(), proxy_update_shard_stats(), proxy_update_shard_stats_without_hint(), proxy_waiter_free(), proxy_waiter_timeout(), proxy_wakeup_context_by_shard(), proxy_wakeup_context_by_statement(), pruningset_to_spec_list(), pt_add_name_col_to_sel_list(), pt_add_oid_to_select_list(), pt_add_string_col_to_sel_list(), pt_add_type_to_set(), pt_adjust_analytic_sort_specs(), pt_agg_orderby_to_sort_list(), pt_aggregate_info_append_value_list(), pt_analytic_to_metadomain(), pt_append_odku_references(), pt_apply_union_select_list_collation(), pt_apply_vacuum(), pt_assignment_class_compatible(), pt_assignment_compatible(), pt_associate_label_with_value(), pt_attr_check_default_cs_coll(), pt_bind_helper(), pt_bind_name_to_spec(), pt_bind_names(), pt_bind_names_in_cte(), pt_bind_names_in_with_clause(), pt_bind_names_merge_insert(), pt_bind_names_merge_update(), pt_bind_names_post(), pt_bind_parameter(), pt_bind_reserved_name(), pt_bind_scope(), pt_bind_set_type(), pt_bind_spec_attrs(), pt_build_analytic_eval_list(), pt_build_do_stmt_aptr_list_pre(), pt_cast_needs_wrap_for_collation(), pt_check_access_status(), pt_check_alter(), pt_check_alter_partition(), pt_check_and_coerce_to_date(), pt_check_assignments(), pt_check_cast_op(), pt_check_compatible_node_for_orderby(), pt_check_create_entity(), pt_check_create_index(), pt_check_create_view(), pt_check_cume_dist_percent_rank_order_by(), pt_check_defaultf(), pt_check_expr_collation(), pt_check_filter_index_expr(), pt_check_filter_index_expr_post(), pt_check_filter_index_expr_pre(), pt_check_function_collation(), pt_check_function_index_expr_pre(), pt_check_grammar_charset_collation(), pt_check_group_concat_order_by(), pt_check_into_clause(), pt_check_json_table_node(), pt_check_method(), pt_check_mutable_attributes(), pt_check_odku_assignments(), pt_check_order_by(), pt_check_partitions(), pt_check_range_partition_strict_increasing(), pt_check_recursive_expr_collation(), pt_check_show_index(), pt_check_table_in_show_heap(), pt_check_type_compatibility_of_values_query(), pt_check_union_compatibility(), pt_check_union_is_foldable(), pt_check_union_type_compatibility_of_values_query(), pt_check_unique_attr(), pt_check_user_exists(), pt_check_vacuum(), pt_check_vclass_union_spec(), pt_check_with_info(), pt_chop_trailing_dots(), pt_coerce_expr_arguments(), pt_coerce_expression_argument(), pt_coerce_node_collation(), pt_coerce_node_collection_of_collection(), pt_coerce_partition_value_with_data_type(), pt_coerce_range_expr_arguments(), pt_coerce_value_for_default_value(), pt_coerce_value_internal(), pt_combine_compatible_info(), pt_common_collation(), pt_compile_trigger_stmt(), pt_copy_upddel_hints_to_select(), pt_count_ctes_post(), pt_create_delete_stmt(), pt_create_iss_range(), pt_create_json_table_column(), pt_create_param_for_value(), pt_create_pt_name(), pt_data_type_to_db_domain(), pt_data_type_to_db_domain_name(), pt_db_to_type_enum(), pt_db_value_initialize(), pt_dbval_to_value(), pt_derive_attribute(), pt_difference_sets(), pt_domain_to_data_type(), pt_end_query(), pt_eval_expr_type(), pt_eval_function_type_new(), pt_eval_function_type_old(), pt_eval_path_expr(), pt_eval_type(), pt_evaluate_db_value_expr(), pt_evaluate_function_w_args(), pt_evaluate_tree_internal(), pt_exec_trigger_stmt(), pt_expand_analytic_node(), pt_expr_disallow_op_pre(), pt_expr_is_allowed_as_function_index(), pt_find_aggregate_analytic_pre(), pt_find_attr_in_class_list(), pt_find_default_expression(), pt_find_name_in_spec(), pt_find_omitted_default_expr(), pt_find_partition_column_count(), pt_find_query(), pt_find_value_of_label(), pt_fix_arguments_collation_flag(), pt_fix_buildlist_aggregate_cume_dist_percent_rank(), pt_fix_enumeration_comparison(), pt_fix_first_term_expr_for_iss(), pt_fix_first_term_func_index_for_iss(), pt_fix_interpolation_aggregate_function_order_by(), pt_flat_spec_pre(), pt_flush_classes(), pt_fold_const_expr(), pt_fold_union(), pt_free_escape_char(), pt_function_is_allowed_as_function_index(), pt_function_name_is_spec_attr(), pt_gen_optimized_plan(), pt_gen_simple_merge_plan(), pt_gen_simple_plan(), pt_get_all_json_table_attributes_and_types(), pt_get_attr_list_of_derived_table(), pt_get_attributes(), pt_get_collation_info(), pt_get_collation_info_for_collection_type(), pt_get_collation_of_collection(), pt_get_common_arg_type_of_width_bucket(), pt_get_common_collection_type(), pt_get_common_datetime_type(), pt_get_compatible_info(), pt_get_compatible_info_from_node(), pt_get_default_expression_from_data_default_node(), pt_get_enumeration_from_data_type(), pt_get_expression_definition(), pt_get_first_arg_ignore_prior(), pt_get_name(), pt_get_object_data_type(), pt_get_one_tuple_from_list_id(), pt_get_query_limit_from_limit(), pt_get_query_limit_from_orderby_for(), pt_get_select_list(), pt_get_select_list_coll_compat(), pt_get_select_query_columns(), pt_get_subquery_list(), pt_get_subquery_of_insert_select(), pt_get_unique_exposed_name(), pt_get_values_query_compatible_info(), pt_has_non_groupby_column_node(), pt_has_non_idx_sarg_coll_pre(), pt_help_show_create_table(), pt_hv_consistent_data_type_with_domain(), pt_infer_common_type(), pt_init_node(), pt_init_pred_expr_context(), pt_init_vacuum(), pt_initialize_analytic_info(), pt_insert_conjunct(), pt_insert_entity(), pt_instnum_to_key_limit(), pt_invert(), pt_is_analytic_eval_list_valid(), pt_is_collection_of_type(), pt_is_compatible_without_cast(), pt_is_const_expr_node(), pt_is_const_foldable_width_bucket(), pt_is_correlation_name(), pt_is_filtering_expression(), pt_is_join_expr(), pt_is_nested_expr(), pt_is_pseudo_const(), pt_is_same_enum_data_type(), pt_json_table_column_behavior_to_string(), pt_make_access_spec(), pt_make_aptr_parent_node(), pt_make_cast_with_compatible_info(), pt_make_class_access_spec(), pt_make_collection_type_subquery_node(), pt_make_constant_regu_list_from_val_list(), pt_make_dotted_identifier_internal(), pt_make_dummy_query_check_table(), pt_make_field_key_type_expr_node(), pt_make_field_type_expr_node(), pt_make_outer_select_for_show_columns(), pt_make_outer_select_for_show_stmt(), pt_make_prefix_index_data_filter(), pt_make_query_describe_w_identifier(), pt_make_query_show_collation(), pt_make_query_show_columns(), pt_make_query_show_create_table(), pt_make_query_show_create_view(), pt_make_query_show_exec_stats(), pt_make_query_show_exec_stats_all(), pt_make_query_show_grants(), pt_make_query_show_index(), pt_make_query_show_table(), pt_make_query_showstmt(), pt_make_query_user_groups(), pt_make_regu_insert(), pt_make_regu_list_from_value_list(), pt_make_regu_numbering(), pt_make_regu_reguvalues_list(), pt_make_sort_spec_with_identifier(), pt_make_sort_spec_with_number(), pt_make_subclass_list(), pt_mark_spec_list_for_update_clause(), pt_metadomain_adjust_key_prefix(), pt_metadomain_build_comp_graph(), pt_metadomains_compatible(), pt_mvcc_prepare_upd_del_select(), pt_mvcc_set_spec_assign_reev_extra_indexes(), pt_negate_expr(), pt_no_double_insert_assignments(), pt_no_double_updates(), pt_node_data_type_to_db_domain(), pt_node_list_to_array(), pt_node_list_to_value_and_reguvar_list(), pt_node_to_cmd_type(), pt_node_to_db_domain(), pt_node_to_db_domain_name(), pt_node_to_enumeration_expr(), pt_node_to_function_index(), pt_node_to_partition_info(), pt_number_of_attributes(), pt_optimize_analytic_list(), pt_ordbynum_to_key_limit_multiple_ranges(), pt_print_alter_index(), pt_print_alter_one_clause(), pt_print_alter_stored_procedure(), pt_print_col_def_constraint(), pt_print_create_index(), pt_print_drop_index(), pt_print_expr(), pt_print_insert(), pt_print_insert_value(), pt_print_json_table_column_info(), pt_print_name(), pt_print_range_op(), pt_print_select(), pt_print_set_names(), pt_print_set_timezone(), pt_print_table_option(), pt_print_tuple_value(), pt_print_update_stats(), pt_print_vacuum(), pt_print_value(), pt_process_spec_for_delete(), pt_process_spec_for_update(), pt_product_sets(), pt_propagate_types(), pt_quick_resolve_names(), pt_remove_unusable_sort_specs(), pt_report_to_ersys(), pt_report_to_ersys_with_statement(), pt_reserved_id_to_valuelist_index(), pt_resolve_analytic_references(), pt_resolve_cte_specs(), pt_resolve_default_value(), pt_resolve_group_having_alias_internal(), pt_resolve_group_having_alias_pt_name(), pt_resolve_names(), pt_resolve_natural_join_internal(), pt_resolve_object(), pt_resolve_showstmt_args_named(), pt_resolve_spec_to_cte(), pt_resolve_spec_to_cte_and_count(), pt_resolve_star(), pt_resolve_star_reserved_names(), pt_resolve_using_index(), pt_rewrite_derived_for_upd_del(), pt_rewrite_to_auto_param(), pt_semantic_check_local(), pt_seq_value_to_db(), pt_serial_to_xasl_class_oid_list(), pt_set_analytic_node_etc(), pt_set_attr_list_types(), pt_set_domain_class_list(), pt_set_elements_to_value(), pt_set_fill_default_in_path_expression(), pt_set_regu_list_pos_descr_from_idx(), pt_set_value_to_db(), pt_show_binopcode(), pt_skeleton_buildlist_proc(), pt_sort_list_from_metadomain(), pt_spec_to_xasl_class_oid_list(), pt_split_attrs(), pt_split_hash_attrs(), pt_split_hash_attrs_for_HQ(), pt_split_join_preds(), pt_substitute_analytic_references(), pt_to_aggregate_node(), pt_to_analytic_final_node(), pt_to_analytic_node(), pt_to_buildlist_proc(), pt_to_class_spec_list(), pt_to_compatible_cast(), pt_to_constraint_pred(), pt_to_cte_table_spec_list(), pt_to_cume_dist_percent_rank_regu_variable(), pt_to_delete_xasl(), pt_to_index_attrs(), pt_to_index_info(), pt_to_insert_xasl(), pt_to_json_table_spec_list(), pt_to_key_limit(), pt_to_merge_insert_xasl(), pt_to_merge_update_xasl(), pt_to_merge_xasl(), pt_to_odku_info(), pt_to_outlist(), pt_to_pred_expr_local_with_arg(), pt_to_rangelist_key(), pt_to_regu_reserved_name(), pt_to_regu_variable(), pt_to_single_key(), pt_to_sort_list(), pt_to_spec_list(), pt_to_upd_del_query(), pt_to_update_xasl(), pt_try_remove_order_by(), pt_type_cast_vclass_query_spec(), pt_type_cast_vclass_query_spec_column(), pt_type_enum_to_db_domain(), pt_uncorr_post(), pt_union_sets(), pt_upd_domain_info(), pt_update_compatible_info(), pt_validate_query_spec(), pt_value_to_db(), pt_values_query_to_compatible_cast(), pt_walk_private(), pt_wrap_collection_with_cast_op(), pt_wrap_expr_w_exp_dom_cast(), pt_wrap_type_for_collation(), pt_wrap_with_cast_op(), ptqo_to_merge_list_proc(), cubthread::worker_pool_task_capper< Context >::push_task(), cubthread::manager::push_task(), cubthread::manager::push_task_on_core(), cubthread::worker_pool< Context >::core::worker::push_task_on_running_thread(), lockfree::freelist< T >::push_to_list(), put_class_attributes(), cubthread::looper::put_to_sleep(), pwrite_with_injected_fault(), px_sort_assign(), px_sort_myself(), qdata_add_bigint_to_timestamptz(), qdata_add_dbval(), qdata_add_int_to_timestamptz(), qdata_add_sequence_to_dbval(), qdata_add_short_to_timestamptz(), qdata_agg_hkey_compare(), qdata_aggregate_interpolation(), qdata_analytic_interpolation(), qdata_apply_interpolation_function_coercion(), qdata_benchmark(), qdata_calculate_aggregate_cume_dist_percent_rank(), qdata_concatenate_dbval(), qdata_convert_operands_to_value_and_call(), qdata_copy_db_value_to_tuple_value(), qdata_elt(), qdata_evaluate_aggregate_hierarchy(), qdata_evaluate_aggregate_list(), qdata_evaluate_analytic_func(), qdata_evaluate_sys_connect_by_path(), qdata_finalize_aggregate_list(), qdata_finalize_analytic_func(), qdata_generate_tuple_desc_for_valptr_list(), qdata_get_dbval_from_constant_regu_variable(), qdata_get_interpolation_function_result(), qdata_group_concat_value(), qdata_hscan_key_compare(), qdata_insert_substring_function(), qdata_interpolation_function_values(), qdata_list_dbs(), qdata_load_agg_hvalue_in_agg_list(), qdata_multiply_sequence_to_dbval(), qdata_regexp_function(), qdata_regu_list_to_regu_array(), qdata_subtract_sequence_to_dbval(), qdata_subtract_timestampltz_to_dbval(), qdata_subtract_timestamptz_to_dbval(), qdata_unary_minus_dbval(), qdata_update_agg_interpolation_func_value_and_domain(), qdata_update_interpolation_func_value_and_domain(), qdump_print_xasl(), qentry_to_sentry(), qexec_add_tuple_to_topn(), qexec_alloc_agg_hash_context(), qexec_analytic_add_tuple(), qexec_analytic_evaluate_interpolation_function(), qexec_analytic_evaluate_offset_function(), qexec_analytic_group_header_load(), qexec_analytic_group_header_next(), qexec_analytic_put_next(), qexec_analytic_sort_key_header_load(), qexec_analytic_start_group(), qexec_analytic_update_group_result(), qexec_change_delete_lob_info(), qexec_clear_agg_orderby_const_list(), qexec_clear_analytic_function_state(), qexec_clear_regu_value_list(), qexec_clear_regu_var(), qexec_clear_regu_variable_list(), qexec_clear_xasl(), qexec_create_internal_classes(), qexec_destroy_upddel_ehash_files(), qexec_end_one_iteration(), qexec_execute_build_columns(), qexec_execute_build_indexes(), qexec_execute_connect_by(), qexec_execute_delete(), qexec_execute_duplicate_key_update(), qexec_execute_increment(), qexec_execute_insert(), qexec_execute_mainblock_internal(), qexec_execute_obj_fetch(), qexec_execute_query(), qexec_execute_selupd_list(), qexec_execute_update(), qexec_for_update_set_class_locks(), qexec_gby_agg_tuple(), qexec_gby_clear_group_dim(), qexec_gby_finalize_group(), qexec_gby_finalize_group_dim(), qexec_gby_finalize_group_val_list(), qexec_gby_init_group_dim(), qexec_gby_put_next(), qexec_gby_start_group(), qexec_get_attr_default(), qexec_groupby(), qexec_groupby_index(), qexec_hash_gby_agg_tuple(), qexec_init_instnum_val(), qexec_initialize_analytic_function_state(), qexec_initialize_analytic_state(), qexec_initialize_groupby_state(), qexec_intprt_fnc(), qexec_merge_listfiles(), qexec_next_scan_block(), qexec_oid_of_duplicate_key_update(), qexec_open_scan(), qexec_ordby_put_next(), qexec_process_partition_unique_stats(), qexec_process_unique_stats(), qexec_remove_duplicates_for_replace(), qexec_resolve_domains_for_aggregation(), qexec_resolve_domains_for_group_by(), qexec_resolve_domains_on_sort_list(), qexec_schema_get_type_desc(), qexec_set_class_locks(), qexec_setup_list_id(), qexec_topn_tuples_to_list_id(), qexec_update_btree_unique_stats_info(), qexec_upddel_add_unique_oid_to_ehid(), qfile_add_tuple_to_list(), qfile_add_tuple_to_list_id(), qfile_allocate_list_cache_entry(), qfile_allocate_sort_list(), qfile_compare_with_interpolation_domain(), qfile_compare_with_null_value(), qfile_copy_tuple_descr_to_tuple(), qfile_end_use_of_list_cache_entry(), qfile_free_list_cache_entry(), qfile_free_sort_list(), qfile_generate_tuple_into_list(), qfile_is_last_page_full(), qfile_load_xasl_node_header(), qfile_lookup_list_cache_entry(), qfile_overwrite_tuple(), qfile_put_next_sort_item(), qfile_update_domains_on_type_list(), qfile_update_list_cache_entry(), qmgr_add_modified_class(), qmgr_allocate_query_entry(), qmgr_clear_trans_wakeup(), qmgr_create_new_temp_file(), qmgr_end_query(), qmgr_execute_query(), qmgr_finalize(), qmgr_finalize_temp_file_list(), qmgr_free_old_page(), qmgr_free_query_temp_file_helper(), qmgr_free_temp_file_list(), qmgr_get_external_file_page(), qmgr_get_page_type(), qmgr_get_temp_file_from_list(), qmgr_get_temp_file_membuf_pages(), qmgr_initialize_temp_file_list(), qmgr_prepare_query(), qmgr_process_query(), qmgr_put_temp_file_into_list(), qmgr_set_dirty_page(), qmgr_set_query_error(), qo_add_dummy_join_term(), qo_allocate_like_bound_for_index_scan(), qo_analyze_term(), qo_apply_range_intersection_helper(), qo_can_generate_single_table_connect_by(), qo_check_coll_optimization(), qo_check_iscan_for_multi_range_opt(), qo_check_join_for_multi_range_opt(), qo_check_parent_eq_class_for_multi_range_opt(), qo_check_plan_index_for_multi_range_opt(), qo_check_seg_belongs_to_range_term(), qo_check_subplan_join_cond_for_multi_range_opt(), qo_check_subqueries_for_multi_range_opt(), qo_check_terms_for_multiple_range_opt(), qo_converse_sarg_terms(), qo_convert_to_range_helper(), qo_do_auto_parameterize(), qo_env_new(), qo_find_index_terms(), qo_find_like_rewrite_bound(), qo_find_node_indexes(), qo_generate_index_scan(), qo_generate_join_index_scan(), qo_generate_loose_index_scan(), qo_get_attr_info(), qo_get_attr_info_func_index(), qo_get_ils_prefix_length(), qo_get_index_info(), qo_get_orderby_num_upper_bound_node(), qo_get_xasl_index_info(), qo_group_by_skip_plans_cmp(), qo_has_is_not_null_term(), qo_index_covering_plans_cmp(), qo_index_scan_new(), qo_is_equi_join_term(), qo_is_index_covering_scan(), qo_is_index_iss_scan(), qo_is_index_loose_scan(), qo_is_index_mro_scan(), qo_is_iss_index(), qo_is_pk_fk_full_join(), qo_iscan_cost(), qo_join_new(), qo_multi_range_opt_plans_cmp(), qo_optimize_queries(), qo_optimize_queries_post(), qo_order_by_skip_plans_cmp(), qo_plan_cmp(), qo_plan_cmp_prefer_covering_index(), qo_plan_compute_iscan_sort_list(), qo_plan_is_orderby_skip_candidate(), qo_plan_iscan_terms_cmp(), qo_plan_multi_range_opt(), qo_plan_print_sort_spec(), qo_plan_sort_print_json(), qo_plan_sort_print_text(), qo_range_optype_rank(), qo_rewrite_index_hints(), qo_rewrite_like_terms(), qo_rewrite_one_like_term(), qo_rewrite_subqueries(), qo_search_planner(), qo_seq_scan_new(), qo_top_plan_new(), qo_top_plan_print_json(), qo_top_plan_print_text(), qo_validate_index_attr_notnull(), qo_validate_index_for_groupby(), qo_validate_index_for_orderby(), qo_validate_index_term_notnull(), qstr_bit_coerce(), qstr_bit_concatenate(), qstr_bit_position(), qstr_bit_substring(), qstr_coerce(), qstr_concatenate(), qstr_eval_like(), qstr_grow_string(), qstr_make_typed_string(), qstr_pad(), qstr_pad_string(), qstr_position(), qstr_replace(), qstr_substring(), qstr_translate(), qstr_trim(), query_cancel(), query_multi_range_opt_check_set_sort_col(), read_cp_from_tag(), lockfree::tran::descriptor::reclaim_retired_head(), redistribute_partition_data(), cubload::server_class_installer::register_class_with_attributes(), register_collation(), cubbase::factory< object_key, object_base >::register_creator(), cubthread::entry::register_id(), cubload::class_registry::register_ignored_class(), register_lang_locale_data(), cubmonitor::monitor::register_statistics(), cuberr::context::register_thread_local(), cubmonitor::counter_timer_statistic< A, T >::register_to_monitor(), cubmonitor::counter_timer_max_statistic< A, T, M >::register_to_monitor(), cubload::session::register_tran_start(), regu_dbval_type_init(), regu_make_constant_vid(), cubmem::reference_store< T >::release_mutable_reference(), release_unused_segments(), remove_deferred_context(), remove_key_from_weight_stats_list(), mvcc_active_tran::remove_long_transaction(), cubregex::replace(), replace_names_alter_chg_attr(), vacuum_shutdown_sequence::request_shutdown(), res_api_apply_update(), res_api_clear_updates(), res_api_delete_row(), res_api_destroy(), res_api_fetch(), res_api_get_resultset_metadata(), res_api_get_value(), res_api_get_value_by_name(), res_api_tell(), res_api_update_value(), res_delete_row_internal(), res_fetch_internal(), HL::ObstackHeap< 0, MallocHeap >::reset(), reset_att_property_structure(), mvcctable::reset_start_mvccid(), record_descriptor::resize_buffer(), resolve_domain_on_regu_operand(), resolve_domains_on_list_scan(), cubbase::restrack_assert(), lockfree::freelist< T >::retire(), resource_shared_pool< cubload::driver >::retire(), cubthread::worker_pool< Context >::core::worker::retire_current_task(), cubthread::manager::retire_entry(), lockfree::tran::descriptor::retire_node(), return_error_to_client(), rm_api_get_count(), rm_api_get_info(), rmutex_finalize(), rmutex_initialize(), rmutex_lock(), rmutex_unlock(), root_to_disk(), rr_next_handle(), rs_destroyf(), rs_get_db_value(), rs_get_index_by_name(), rs_init_domain(), rs_meta_destroyf(), rs_set_db_value(), cubthread::waiter::run(), cubthread::worker_pool< Context >::core::worker::run(), run_proxy_server(), rv_check_rvfuns(), log_system_tdes::rv_delete_tdes(), log_system_tdes::rv_final(), log_system_tdes::rv_get_or_alloc_tdes(), log_system_tdes::rv_simulate_system_tdes(), rwlock_finalize(), rwlock_initialize(), rwlock_read_lock(), rwlock_read_unlock(), rwlock_write_lock(), rwlock_write_unlock(), lockfree::hashmap< Key, T >::safeguard_use_mutex_or_tran_started(), save_constraint_info_from_pt_node(), save_contraction_to_C_file(), lockfree::tran::descriptor::save_reclaimable(), sboot_get_locales_info(), sboot_get_timezone_checksum(), sboot_notify_unregister_client(), sbtree_load_index(), scan_alloc_iscan_oid_buf_list(), scan_alloc_oid_list(), scan_dbvals_to_midxkey(), scan_free_oid_list(), scan_get_index_oidset(), scan_init_filter_info(), scan_init_index_scan(), scan_init_indx_coverage(), scan_init_scan_attrs(), scan_init_scan_pred(), scan_initialize(), scan_next_heap_scan(), scan_next_index_lookup_heap(), scan_next_index_scan(), cubscan::json_table::scanner::scan_next_internal(), scan_next_scan_block(), scan_next_set_scan(), scan_next_value_scan(), scan_open_heap_scan(), scan_open_index_key_info_scan(), scan_open_index_node_info_scan(), scan_open_index_scan(), scan_open_json_table_scan(), scan_open_showstmt_scan(), scan_open_values_scan(), scan_regu_key_to_index_key(), scan_save_range_details(), scan_start_scan(), sch_exported_keys_or_cross_reference(), sch_imported_keys(), sch_trigger(), sct_check_rep_dir(), vacuum_job_cursor::search(), search_offset(), select_delete_list(), select_xml_branch_node(), select_xml_node_for_ins(), send_fd(), serial_alloc_cache_area(), serial_get_next_cached_value(), serial_update_cur_val_of_serial(), serial_update_serial_object(), session_add_variable(), session_check_session(), session_clear_trace_stats(), session_define_variable(), session_drop_variable(), session_free_prepared_statement(), session_get_exec_stats_and_clear(), session_get_last_insert_id(), session_get_prepared_statement(), session_get_row_count(), session_get_session_id(), session_get_session_parameter(), session_get_session_parameters(), session_get_session_tz_region(), session_get_variable(), session_get_variable_no_copy(), session_key_compare(), session_preserve_temporary_files(), session_remove_expired_sessions(), session_set_session_parameters(), session_set_session_variables(), session_state_create(), session_state_destroy(), session_stop_attached_threads(), session_store_query_entry_info(), JSON_PATH::set(), JSON_OBJECT_ITERATOR::set(), JSON_ARRAY_ITERATOR::set(), set_add_element(), set_area_init(), mvcc_active_tran::set_bitarea_mvccid(), set_cubrid_file(), set_cubrid_home(), set_current_locale(), set_data_length(), set_drop_element(), set_drop_seq_element(), cuberr::er_message::set_error(), set_get_setobj(), set_host_variables(), set_insert_element(), vacuum_data::set_last_blockid(), cubthread::set_manager(), set_monitor_items(), set_msg_lang_from_env(), set_next_value_for_coll_key(), vacuum_data::set_oldest_unvacuumed_on_boot(), set_op(), set_prepare_info_into_list(), set_put_element(), record_descriptor::set_recdes(), record_descriptor::set_record_length(), func_type::Node::set_return_type(), set_server_error(), set_sqlca_err(), set_tform_disk_set(), cubthread::set_thread_local_entry(), set_to_db_value_mapf(), setobj_sort(), HL::SizeHeap< ObstackHeap< 0, MallocHeap > >::setSize(), JSON_SERIALIZER::SetSizePointers(), cubthread::looper::setup_fixed_waits(), cubthread::looper::setup_infinite_wait(), sh_comparef(), sh_delete(), sh_destroy(), sh_hashf(), sh_insert(), sh_keyf(), sh_lookup(), SHA1Compute(), shard_cas_main(), shard_cqueue_dequeue(), shard_cqueue_enqueue(), shard_cqueue_initialize(), shard_cqueue_is_empty(), shard_cqueue_is_full(), shard_metadata_dump_conn(), shard_metadata_dump_internal(), shard_metadata_dump_key(), shard_metadata_dump_user(), shard_metadata_get_conn(), shard_metadata_get_key(), shard_metadata_get_shard_user(), shard_metadata_get_shard_user_from_shm(), shard_metadata_get_user(), shard_metadata_initialize(), shard_metadata_read_conn(), shard_metadata_read_key(), shard_metadata_validate_conn(), shard_metadata_validate_key(), shard_metadata_validate_key_range_internal(), shard_metadata_validate_user(), shard_println_1(), shard_println_2(), shard_queue_enqueue(), shard_queue_initialize(), shard_queue_insert_after(), shard_shm_dump_appl_server_internal(), shard_shm_dump_proxy(), shard_shm_dump_proxy_info(), shard_shm_dump_shard(), shard_shm_find_proxy_info(), shard_shm_find_shard_info(), shard_shm_get_as_info(), shard_shm_get_client_info(), shard_shm_get_key_stat(), shard_shm_get_shard_stat(), shard_shm_init_client_info(), shard_shm_init_client_info_request(), shard_shm_init_key_stat(), shard_shm_init_shard_stat(), shard_shm_set_as_client_info_with_db_param(), shard_shm_set_client_info_request(), shard_shm_set_client_info_response(), shard_shm_set_shm_proxy(), shard_stmt_check_waiter_and_wakeup(), shard_stmt_del_statement_from_map(), shard_stmt_find_by_sql(), shard_stmt_free(), shard_stmt_get_hint_type(), shard_stmt_lru_delete(), shard_stmt_lru_insert(), shard_stmt_new_internal(), shard_stmt_pin(), shard_stmt_pos_srv_h_id(), shard_stmt_save_prepare_request(), shard_stmt_set_hint_list(), shard_stmt_set_status(), shard_stmt_unpin(), showstmt_array_end_scan(), showstmt_array_next_scan(), showstmt_end_scan(), showstmt_free_array_context(), showstmt_next_scan(), showstmt_start_scan(), sl_log_open(), sl_open_next_file(), sl_write_sql(), sloaddb_destroy(), sloaddb_fetch_status(), sloaddb_install_class(), sloaddb_interrupt(), sloaddb_load_batch(), sloaddb_update_stats(), slocator_force(), slocator_get_reserved_class_name_oid(), sm_add_constraint(), sm_att_default_value(), sm_att_in_unique_filter_constraint_predicate(), sm_build_function_nlist(), sm_ch_name(), sm_check_catalog_rep_dir(), sm_class_check_uniques(), sm_class_has_triggers(), sm_class_has_unique_constraint(), sm_constraint_belongs_to_class(), sm_decache_instances_after_query_executed_with_commit(), sm_default_constraint_name(), sm_delete_class_mop(), sm_downcase_name(), sm_drop_cascade_foreign_key(), sm_drop_constraint(), sm_drop_index(), sm_dynamic_link_class(), sm_exist_index(), sm_expand_method_files(), sm_filter_index_pred_have_invalid_attrs(), sm_find_subclass_in_hierarchy(), sm_flush_for_multi_update(), sm_force_write_all_classes(), sm_free_filter_index_info(), sm_free_function_index_info(), sm_free_function_nlist(), sm_get_attribute_descriptor(), sm_get_class_collation(), sm_get_class_repid(), sm_get_class_tde_algorithm(), sm_get_descriptor_component(), sm_get_method_descriptor(), sm_has_non_null_attribute(), sm_is_global_only_constraint(), sm_is_index_visible(), sm_is_possible_to_recreate_constraint(), sm_is_subclass(), sm_link_static_method(), sm_load_online_index(), sm_partitioned_class_type(), sm_prelink_methods(), sm_rename_class(), sm_save_constraint_info(), sm_set_class_collation(), sm_set_class_comment(), sm_set_class_tde_algorithm(), sm_split_loader_commands(), sm_touch_class(), sm_truncate_class(), sm_truncate_using_delete(), sm_update_all_statistics(), sm_update_catalog_statistics(), sm_update_statistics(), smt_add_attribute_any(), smt_add_attribute_to_list(), smt_add_constraint(), smt_add_method_file(), smt_add_query_spec(), smt_add_set_attribute_domain(), smt_change_attribute(), smt_change_attribute_pos_in_list(), smt_change_attribute_w_dflt_w_order(), smt_change_class_shared_attribute_domain(), smt_change_constraint_comment(), smt_change_constraint_status(), smt_change_query_spec(), smt_copy_class_mop(), smt_delete_set_attribute_domain(), smt_drop_constraint(), smt_find_constraint(), smt_rename_any(), smt_rename_method_file(), smt_set_attribute_default(), smt_set_attribute_orig_default_value(), sort_checkalloc_numpages_of_outfiles(), sort_constr_info_list(), sort_inphase_sort(), sort_one_coll_key_list(), sort_run_sort(), sort_spage_find_free(), sort_spage_get_record(), sort_spage_insert(), sort_validate(), spacedb_get_size_str(), spage_anchor_flag_string(), spage_boot(), spage_check(), spage_check_mvcc_updatable(), spage_check_num_slots(), spage_check_slot_owner(), spage_check_updatable(), spage_collect_statistics(), spage_compact(), spage_compare_slot_offset(), spage_delete(), spage_delete_for_recovery(), spage_dump(), spage_dump_record(), spage_dump_slots(), spage_find_empty_slot(), spage_find_empty_slot_at(), spage_find_free_slot(), spage_find_slot(), spage_find_slot_for_insert(), spage_free_saved_spaces(), spage_get_free_space(), spage_get_free_space_without_saving(), spage_get_record(), spage_get_record_data(), spage_get_record_length(), spage_get_record_offset(), spage_get_record_type(), spage_get_saved_spaces(), spage_get_saved_spaces_by_other_trans(), spage_get_slot(), spage_get_space_for_record(), spage_has_enough_contiguous_space(), spage_has_enough_total_space(), spage_header_next_scan(), spage_header_start_scan(), spage_initialize(), spage_insert(), spage_insert_at(), spage_insert_data(), spage_insert_for_recovery(), spage_is_record_located_at_end(), spage_is_slot_exist(), spage_is_unknown_slot(), spage_is_valid_anchor_type(), spage_mark_deleted_slot_as_reusable(), spage_max_space_for_new_record(), spage_merge(), spage_need_compact(), spage_number_of_records(), spage_number_of_slots(), spage_overwrite(), spage_put_helper(), spage_reclaim(), spage_record_type_string(), spage_save_space(), spage_search_record(), spage_set_need_update_best_hint(), spage_set_slot(), spage_shift_slot_down(), spage_shift_slot_up(), spage_slots_next_scan(), spage_slots_start_scan(), spage_split(), spage_take_out(), spage_take_slot_in_use(), spage_update(), spage_update_record_after_compact(), spage_update_record_in_place(), spage_update_record_type(), spage_vacuum_slot(), spage_verify_header(), cubload::split(), sqmgr_execute_query(), sqmgr_prepare_query(), sserial_get_current_value(), ssession_find_or_create_session(), start_calendar_name_context(), start_collation_cubrid_rule(), start_collation_cubrid_rule_set_wr(), start_collation_logical_pos(), start_collation_reset(), start_collation_rule(), start_collation_settings(), start_collation_x(), start_collations(), start_consoleconversion(), start_currency(), start_day(), start_dayPeriod(), start_include_collation(), vacuum_job_cursor::start_job_on_current_entry(), cubscan::json_table::scanner::cursor::start_json_iterator(), start_lower_case_rule(), start_month(), start_month_day_Width(), start_numbers_symbols(), start_one_alphabet(), start_one_collation(), cubthread::worker_pool< Context >::core::worker::start_thread(), lockfree::tran::descriptor::start_tran_and_increment_id(), lockfree::hashmap< Key, T >::start_tran_force(), start_unicode_file(), start_upper_case_rule(), cubmonitor::transaction_sheet_manager::start_watch(), starts_with(), statement_get_reshandle_or_affectedrows(), stats_client_unpack_statistics(), stats_dump(), stats_find_inherited_index_stats(), stats_get_statistics(), stats_get_statistics_from_server(), stats_get_time_stamp(), stats_update_partitioned_statistics(), cubperf::statset_definition::statset_definition(), stmt_add_batch_string(), stmt_bind_pmeta_handle(), stmt_complete_batch(), stmt_destroyf(), stmt_exec_immediate_internal(), stmt_exec_internal(), stmt_execute_batch_sql(), stmt_get_resultset_metadata_internal(), stmt_prepare_internal(), stmt_release_children(), cubthread::worker_pool< Context >::stop_execution(), str_day_to_int(), str_month_to_int(), str_pop_token(), str_read_day_var(), str_to_double(), str_to_float(), str_to_hex(), str_to_hex_prealloced(), str_to_int32(), str_to_int64(), str_to_offset_rule_until(), str_to_uint32(), str_to_uint64(), stran_can_end_after_query_execution(), stran_server_auto_commit_or_abort(), stran_server_commit_internal(), strdup(), string_to_int_array(), strlcpy(), stx_build(), stx_build_aggregate_type(), stx_build_analytic_eval_type(), stx_build_analytic_type(), stx_build_arith_type(), stx_build_buildlist_proc(), stx_build_buildvalue_proc(), stx_build_fetch_proc(), stx_build_function_type(), stx_build_insert_proc(), stx_build_method_sig(), stx_build_method_sig_list(), stx_build_regu_value_list(), stx_build_regu_variable(), stx_build_regu_variable_list(), stx_build_rlist_spec_type(), stx_build_update_class_info(), stx_build_val_list(), stx_build_xasl_node(), stx_init_regu_variable(), stx_map_stream_to_xasl_node_header(), stx_restore(), stx_restore_db_value_array_extra(), stx_restore_method_sig(), stx_restore_string(), stx_unpack_regu_variable_value(), cubregex::substr(), cuberr::er_message::swap(), lockfree::freelist< T >::swap_backbuffer(), sync_allocate_sync_stats(), sync_consume_sync_stats_from_pool(), sync_deallocate_sync_stats(), sync_finalize_sync_stats(), sync_initialize_sync_stats(), sync_initialize_sync_stats_chunk(), sync_reset_stats_metrics(), sync_return_sync_stats_to_pool(), synccoll_check(), sysprm_compare_values(), sysprm_final(), sysprm_free_session_parameters(), sysprm_generate_new_value(), sysprm_get_force_server_parameters(), sysprm_get_id(), sysprm_get_range(), sysprm_get_session_parameters_count(), sysprm_load_and_init_internal(), sysprm_obtain_parameters(), sysprm_obtain_server_parameters(), sysprm_print_parameters_for_ha_repl(), sysprm_print_parameters_for_qry_string(), sysprm_print_sysprm_value(), sysprm_unpack_assign_values(), sysprm_unpack_session_parameters(), sysprm_unpack_sysprm_value(), sysprm_validate_change_parameters(), systdes_claim_tdes(), systdes_remove_tdes_from_map(), lockfree::tran::system::system(), tde_cipher_initialize(), tde_create_dk(), tde_create_mk(), tde_decrypt_internal(), tde_dk_nonce(), tde_encrypt_internal(), tde_get_keyinfo(), tde_load_mk(), tde_make_mk_hash(), tde_update_keyinfo(), test_area(), test_clear_proc_2(), test_clear_proc_3(), test_hash_proc_2(), test_hash_proc_3(), text_print(), tf_add_fixup(), tf_attribute_default_expr_to_property(), tf_class_to_disk(), tf_disk_to_class(), tfmt_new(), thread_get_tran_entry(), thread_suspend_timeout_wakeup_and_unlock_entry(), thread_suspend_wakeup_and_unlock_entry(), thread_suspend_with_other_mutex(), timeval_to_timespec(), tmalloc_large(), tmalloc_small(), cubload::to_db_elo_ext(), cubload::to_db_elo_int(), cubload::to_db_json(), cubload::to_db_varbit_from_bin_str(), cubload::to_db_varbit_from_hex_str(), tp_check_value_size(), tp_digit_number_str_to_bi(), tp_domain_construct(), tp_domain_copy_enumeration(), tp_domain_disk_size(), tp_domain_find_charbit(), tp_domain_find_numeric(), tp_domain_init(), tp_domain_match_internal(), tp_domain_resolve_default_w_coll(), tp_domain_resolve_value(), tp_domain_select(), tp_domain_status_er_set(), tp_dtoa(), tp_enumeration_to_varchar(), tp_final(), tp_ftoa(), tp_hex_str_to_bi(), tp_infer_common_domain(), tp_init(), tp_is_domain_cached(), tp_scientific_str_to_bi(), tp_setdomain_size(), tp_ubi_times_ten(), tp_ubi_to_bi_with_args(), tp_value_cast_internal(), tp_value_change_coll_and_codeset(), tp_value_compare_with_error(), tp_value_str_auto_cast_to_number(), tr_check_recursivity(), tr_drop_cache_trigger(), tr_has_user_trigger(), tr_prepare_class(), tr_prepare_statement(), tr_set_comment(), tr_status_as_string(), tr_update_user_cache(), tran_2pc_attach_global_tran(), tran_2pc_prepare(), tran_2pc_prepare_global_tran(), tran_abort(), tran_add_savepoint(), tran_commit(), tran_get_global_tran_info(), tran_internal_abort_upto_savepoint(), tran_savepoint_internal(), tran_server_commit(), tran_set_global_tran_info(), tran_set_latest_query_status(), tranlist_cmp_f(), cubxasl::json_table::column::trigger_on_empty(), cubxasl::json_table::column::trigger_on_error(), trigger_table_rename(), truncate_class_name(), truncate_date(), truncate_need_repl_log(), cubthread::manager::try_task(), tx_lob_locator_clear(), func_type::Node::type_checking(), tz_conv_tz_datetime_w_region(), tz_conv_tz_datetime_w_zone_info(), tz_datetime_utc_conv(), tz_decode_tz_id(), tz_encode_tz_region(), tz_explain_tz_id(), tz_fast_find_ds_rule(), tz_get_best_match_zone(), tz_get_first_weekday_around_date(), tz_get_zone_id_by_name(), tz_load_data_from_lib(), tz_load_library(), tz_load_with_library_path(), tz_print_tz_offset(), tz_str_read_number(), tz_str_read_time(), tz_str_to_seconds(), tz_tzid_convert_region_to_offset(), tz_utc_datetimetz_to_local(), tz_zone_info_to_str(), tzc_add_ds_rule(), tzc_add_leap_sec(), tzc_add_link(), tzc_add_offset_rule(), tzc_add_zone(), tzc_build_filepath(), tzc_check_ds_ruleset(), tzc_check_links_raw_data(), tzc_compile_data(), tzc_compile_ds_rules(), tzc_compute_timezone_checksum(), tzc_del_unused_raw_data(), tzc_dump_countries(), tzc_dump_ds_ruleset(), tzc_dump_leap_sec(), tzc_dump_one_offset_rule(), tzc_dump_one_timezone(), tzc_dump_summary(), tzc_dump_timezones(), tzc_get_timezone_aliases(), tzc_get_zone(), tzc_index_raw_subdata(), tzc_load_backward_zones(), tzc_load_countries(), tzc_load_leap_secs(), tzc_load_rule_file(), tzc_load_zone_names(), tzc_log_error(), tzc_parse_ds_change_on(), tzc_read_time_type(), tzc_summary(), uca_comp_func_coll_key(), uca_free_data(), uci_execute_immediate(), uci_open_cs(), uci_prepare(), uci_static(), lockfree::circular_queue< T >::unblock(), unicode_compose_string(), unicode_decompose_string(), unicode_make_normalization_data(), unicode_process_alphabet(), unicode_process_normalization(), unicode_string_need_compose(), unicode_string_need_decompose(), lockfree::hashmap< Key, T >::unlock(), lf_hash_table_cpp< Key, T >::unlock(), lockfree::hashmap< Key, T >::unlock_entry_mutex_force(), mvcctable::unlock_global_oldest_visible(), cubpacking::unpacker::unpack_bool(), cubpacking::unpacker::unpack_buffer_with_length(), cubpacking::unpacker::unpack_c_string(), cubpacking::unpacker::unpack_db_value(), unpack_domain(), unpack_domain_2(), cubpacking::unpacker::unpack_small_string(), update_at_server(), update_class(), update_class_attributes(), update_diff_time_statistics(), update_error_query_count(), update_fk_ref_partitioned_class(), update_foreign_key_ref(), mvcctable::update_global_oldest_visible(), update_locksets_for_multiple_rename(), update_logical_result(), update_object_by_oid(), update_object_tuple(), update_objs_for_list_file(), update_query_execution_count(), update_real_class(), record_descriptor::update_source_after_get(), vacuum_data::upgrade_oldest_unvacuumed(), us_date_string(), us_time_string(), us_time_value(), ut_check_timeout(), ut_get_as_pid_name(), ut_get_as_port_name(), ut_get_broker_port_name(), ut_get_ipv4_string(), ut_get_proxy_port_name(), ut_size_string_to_kbyte(), ut_time_string_to_sec(), ut_timeval_diff(), ut_uchar2ipstr(), util_get_class_oids_and_index_btid(), util_get_second_and_ms_since_epoch(), util_get_service_option_mask(), util_log_file_backup(), util_log_file_fopen(), util_log_header(), ux_get_generated_keys_client_insert(), ux_get_generated_keys_server_insert(), vacuum_add_dropped_file(), vacuum_boot(), vacuum_check_not_vacuumed_rec_header(), vacuum_check_shutdown_interruption(), vacuum_cleanup_collected_by_vfid(), vacuum_cleanup_dropped_files(), vacuum_compare_dropped_files(), vacuum_consume_buffer_log_blocks(), vacuum_create_file_for_dropped_files(), vacuum_data_empty_page(), vacuum_data_empty_update_last_blockid(), vacuum_data_entry::vacuum_data_entry(), vacuum_data_load_and_recover(), vacuum_data_load_first_and_last_page(), vacuum_data_mark_finished(), vacuum_data_unload_first_and_last_page(), vacuum_fetch_log_page(), vacuum_finalize(), vacuum_find_dropped_file(), vacuum_finished_block_vacuum(), vacuum_get_first_page_dropped_files(), vacuum_get_vacuum_worker(), vacuum_heap_get_hfid_and_file_type(), vacuum_heap_page(), vacuum_heap_page_log_and_reset(), vacuum_heap_prepare_record(), vacuum_heap_record(), vacuum_heap_record_insid_and_prev_version(), vacuum_init_thread_context(), vacuum_initialize(), vacuum_is_empty(), vacuum_is_thread_vacuum(), vacuum_is_thread_vacuum_master(), vacuum_is_thread_vacuum_worker(), vacuum_load_dropped_files_from_disk(), vacuum_log_cleanup_dropped_files(), vacuum_log_prefetch_vacuum_block(), vacuum_log_redoundo_vacuum_record(), vacuum_log_vacuum_heap_page(), vacuum_notify_all_workers_dropped_file(), vacuum_process_log_block(), vacuum_process_log_record(), vacuum_produce_log_block_data(), vacuum_recover_lost_block_data(), vacuum_reset_data_after_copydb(), vacuum_rv_check_at_undo(), vacuum_rv_es_nop(), vacuum_rv_redo_add_dropped_file(), vacuum_rv_redo_append_data(), vacuum_rv_redo_append_data_dump(), vacuum_rv_redo_cleanup_dropped_files(), vacuum_rv_redo_data_finished(), vacuum_rv_redo_data_finished_dump(), vacuum_rv_redo_initialize_data_page(), vacuum_rv_redo_start_job(), vacuum_rv_redo_vacuum_complete(), vacuum_rv_redo_vacuum_heap_page(), vacuum_rv_replace_dropped_file(), vacuum_rv_set_next_page_dropped_files(), vacuum_rv_undoredo_data_set_link(), vacuum_set_dirty_data_page_dont_free(), vacuum_verify_vacuum_data_debug(), vacuum_verify_vacuum_data_page_fix_count(), vacuum_worker_allocate_resources(), valcnv_convert_data_to_string(), JSON_VALIDATOR::validate(), values_list_to_values_array(), vbt_api_apply_updates(), vbt_api_destroy(), vbt_api_get_value(), vbt_api_get_value_by_name(), vbt_api_reset(), vbt_api_set_value(), vbt_api_set_value_by_name(), vbt_apply_updatesf_map(), vbt_lazy_init_db_value(), vbt_resetf_map(), vid_att_in_obj_id(), vid_build_non_upd_object(), vid_flush_and_rehash(), vid_make_vobj(), vid_vobj_to_object(), vt_api_get_db_value(), vt_api_get_index_by_name(), vt_api_init_domain(), vt_api_set_db_value(), cubload::worker_manager_register_session(), cubload::worker_manager_try_task(), cubload::worker_manager_unregister_session(), cubthread::worker_pool< Context >::worker_pool(), cubthread::wp_handle_system_error(), JSON_PRETTY_WRITER::WriteDelimiters(), ws_add_label_value_to_mop(), ws_add_to_repl_obj_list(), ws_area_init(), ws_check_hash_link(), ws_cull_mops(), ws_examine_no_mop_has_cached_lock(), ws_free_repl_flush_error(), ws_free_repl_obj(), ws_get_repl_obj_from_list(), ws_init(), ws_mop(), ws_new_mop(), ws_rehash_vmop(), ws_unlink_from_commit_mops_list(), ws_update_oid(), ws_update_oid_and_class(), ws_vmop(), xboot_add_volume_extension(), xboot_check_db_consistency(), xboot_copy(), xboot_initialize_server(), xbtree_add_index(), xbtree_find_unique(), xbtree_get_key_type(), xbtree_load_index(), xbtree_load_online_index(), xbtree_test_unique(), xcache_check_recompilation_threshold(), xcache_cleanup(), xcache_copy_key(), xcache_dump(), xcache_entry_free(), xcache_entry_init(), xcache_entry_is_related_to_oid(), xcache_entry_mark_deleted(), xcache_entry_uninit(), xcache_find_sha1(), xcache_find_xasl_id_for_execute(), xcache_insert(), xcache_invalidate_entries(), xcache_retire_clone(), xcache_unfix(), xcatalog_check_rep_dir(), xchksum_insert_repl_log_and_demote_table_lock(), xcol_copy(), xcol_elem_cci_bind_mapf(), xcol_to_cci_set(), xdisk_get_free_numpages(), xdisk_get_purpose(), xdisk_get_purpose_and_space_info(), xfile_apply_tde_to_class_files(), xheap_get_class_num_objects_pages(), xlocator_assign_oid(), xlocator_delete_class_name(), xlocator_fetch(), xlocator_fetch_all(), xlocator_find_class_oid(), xlocator_find_lockhint_class_oids(), xlocator_force(), xlocator_get_reserved_class_name_oid(), xlocator_remove_class_from_index(), xlocator_rename_class_name(), xlocator_repl_force(), xlocator_reserve_class_name(), xlocator_reserve_class_names(), xlog_get_page_request_with_reply(), xlogtb_get_pack_tran_table(), xml_check_att_value(), xml_create_subparser(), xml_data_handler(), xml_destroy_schema_tree(), xml_elem_end(), xml_elem_start(), xml_get_att_value(), xml_header_validation_utf8(), xml_init_parser(), xml_init_parser_common(), xml_parse(), xoid2oid(), xoid2oidstr(), xqfile_get_list_file_page(), xqmgr_end_query(), xqmgr_execute_query(), xqmgr_prepare_and_execute_query(), xqmgr_prepare_query(), xserial_get_current_value(), xserial_get_current_value_internal(), xserial_get_next_value(), xserial_get_next_value_internal(), xsession_create_new(), xsession_get_last_insert_id(), xsession_get_prepared_statement(), xsession_get_session_variable_no_copy(), xsession_set_cur_insert_id(), xstats_get_statistics_from_server(), xstats_update_all_statistics(), xstats_update_statistics(), xtran_get_local_transaction_id(), xtran_server_end_topop(), xts_debug_check(), xts_get_regu_variable_value_size(), xts_map_xasl_to_stream(), xts_pack_regu_variable_value(), xts_process(), xts_process_method_sig(), xts_process_method_sig_list(), xts_process_regu_value_list(), xts_process_regu_variable(), xts_process_regu_variable_list(), xts_process_xasl_node(), xts_reserve_location_in_stream(), xts_save_aggregate_type(), xts_save_arith_type(), xts_save_cache_attrinfo(), xts_save_db_value(), xts_save_filter_pred_node(), xts_save_func_pred(), xts_save_function_type(), xts_save_indx_info(), xts_save_list_id(), xts_save_method_sig(), xts_save_method_sig_list(), xts_save_outptr_list(), xts_save_pred_expr(), xts_save_regu_variable(), xts_save_selupd_list(), xts_save_sort_list(), xts_save_srlist_id(), xts_save_string(), xts_save_update_assignment_array(), xts_save_upddel_class_info(), xts_save_upddel_class_info_array(), xts_save_val_list(), xts_save_xasl_node(), xts_sizeof_regu_value_list(), xts_sizeof_regu_variable_list(), xtx_add_lob_locator(), xtx_change_state_of_locator(), xtx_drop_lob_locator(), xtx_find_lob_locator(), xvacuum(), xvacuum_dump(), HL::ZoneHeap< MallocHeap, 0 >::zoneMalloc(), cuberr::context::~context(), lockfree::tran::descriptor::~descriptor(), HL::ObstackHeap< 0, MallocHeap >::~ObstackHeap(), cubbase::pinnable::~pinnable(), cubmem::pinnable_buffer::~pinnable_buffer(), cubbase::pinner::~pinner(), print_output::~print_output(), resource_shared_pool< cubload::driver >::~resource_shared_pool(), vacuum_job_cursor::~vacuum_job_cursor(), cubthread::worker_pool< Context >::~worker_pool(), and xasl_cache_ent::~xasl_cache_ent().

#define bit_for_tree_index (   i)    (i == NTREEBINS-1)? (SIZE_T_BITSIZE-1) : (((i) >> 1) + TREEBIN_SHIFT - 2)

Definition at line 2308 of file malloc_2_8_3.c.

#define CALL_MMAP (   s)
Value:
((dev_zero_fd < 0) ? \
(dev_zero_fd = open("/dev/zero", O_RDWR), \
mmap(0, (s), MMAP_PROT, MMAP_FLAGS, dev_zero_fd, 0)) : \
mmap(0, (s), MMAP_PROT, MMAP_FLAGS, dev_zero_fd, 0))
#define MMAP_PROT
#define MMAP_FLAGS
static int dev_zero_fd

Definition at line 1355 of file malloc_2_8_3.c.

Referenced by dlmallopt(), and sys_alloc().

#define CALL_MORECORE (   S)    MORECORE(S)

Definition at line 1416 of file malloc_2_8_3.c.

Referenced by sys_alloc(), and sys_trim().

#define CALL_MREMAP (   addr,
  osz,
  nsz,
  mv 
)    MFAIL

Definition at line 1412 of file malloc_2_8_3.c.

Referenced by mmap_resize(), and sys_trim().

#define CALL_MUNMAP (   a,
 
)    munmap((a), (s))

Definition at line 1340 of file malloc_2_8_3.c.

Referenced by dlfree(), dlmallopt(), release_unused_segments(), and sys_trim().

#define calloc_must_clear (   p)    (!is_mmapped(p))

Definition at line 1768 of file malloc_2_8_3.c.

Referenced by dlcalloc(), and dlmallopt().

#define check_free_chunk (   M,
 
)

Definition at line 2232 of file malloc_2_8_3.c.

Referenced by dlfree(), dlmallopt(), and prepend_alloc().

#define check_inuse_chunk (   M,
 
)

Definition at line 2233 of file malloc_2_8_3.c.

Referenced by dlfree(), dlmallopt(), ialloc(), internal_memalign(), and internal_realloc().

#define check_malloc_state (   M)

Definition at line 2236 of file malloc_2_8_3.c.

Referenced by internal_mallinfo(), and internal_malloc_stats().

#define check_malloced_chunk (   M,
  P,
 
)

Definition at line 2234 of file malloc_2_8_3.c.

Referenced by dlmalloc(), dlmallopt(), prepend_alloc(), and sys_alloc().

#define check_mmapped_chunk (   M,
 
)

Definition at line 2235 of file malloc_2_8_3.c.

Referenced by mmap_alloc(), and mmap_resize().

#define check_top_chunk (   M,
 
)

Definition at line 2237 of file malloc_2_8_3.c.

Referenced by add_segment(), dlmalloc(), dlmallopt(), prepend_alloc(), sys_alloc(), and sys_trim().

#define CHUNK_ALIGN_MASK   (MALLOC_ALIGNMENT - SIZE_T_ONE)

Definition at line 1296 of file malloc_2_8_3.c.

Referenced by add_segment(), change_mparam(), mmap_alloc(), and mmap_resize().

#define chunk_minus_offset (   p,
 
)    ((mchunkptr)(((char*)(p)) - (s)))

Definition at line 1738 of file malloc_2_8_3.c.

Referenced by dlfree(), and dlmallopt().

#define CHUNK_OVERHEAD   (SIZE_T_SIZE)

Definition at line 1680 of file malloc_2_8_3.c.

Referenced by ialloc(), and internal_memalign().

#define chunk_plus_offset (   p,
 
)    ((mchunkptr)(((char*)(p)) + (s)))
#define CINUSE_BIT   (SIZE_T_TWO)

Definition at line 1722 of file malloc_2_8_3.c.

Referenced by change_mparam(), dlmallopt(), internal_memalign(), mmap_alloc(), and mmap_resize().

#define clear_cinuse (   p)    ((p)->head &= ~CINUSE_BIT)

Definition at line 1734 of file malloc_2_8_3.c.

#define clear_pinuse (   p)    ((p)->head &= ~PINUSE_BIT)

Definition at line 1733 of file malloc_2_8_3.c.

#define clear_smallmap (   M,
  i 
)    ((M)->smallmap &= ~idx2bit(i))

Definition at line 2329 of file malloc_2_8_3.c.

#define clear_treemap (   M,
  i 
)    ((M)->treemap &= ~idx2bit(i))

Definition at line 2333 of file malloc_2_8_3.c.

#define CMFAIL   ((char*)(MFAIL)) /* defined for convenience */

Definition at line 1317 of file malloc_2_8_3.c.

Referenced by dlmallopt(), mmap_alloc(), mmap_resize(), my_malloc(), sys_alloc(), and sys_trim().

#define compute_bit2idx (   X,
 
)
Value:
{\
unsigned int Y = X - 1;\
unsigned int K = Y >> (16-4) & 16;\
unsigned int N = K; Y >>= K;\
N += K = Y >> (8-3) & 8; Y >>= K;\
N += K = Y >> (4-2) & 4; Y >>= K;\
N += K = Y >> (2-1) & 2; Y >>= K;\
N += K = Y >> (1-0) & 1; Y >>= K;\
I = (bindex_t)(N + Y);\
}
unsigned int bindex_t

Definition at line 2351 of file malloc_2_8_3.c.

Referenced by dlmalloc(), dlmallopt(), tmalloc_large(), and tmalloc_small().

#define compute_tree_index (   S,
 
)
Value:
{\
size_t X = S >> TREEBIN_SHIFT;\
if (X == 0)\
I = 0;\
else if (X > 0xFFFF)\
I = NTREEBINS-1;\
unsigned int Y = (unsigned int)X;\
unsigned int N = ((Y - 0x100) >> 16) & 8;\
unsigned int K = (((Y <<= N) - 0x1000) >> 16) & 4;\
N += K;\
N += K = (((Y <<= K) - 0x4000) >> 16) & 2;\
K = 14 - N + ((Y <<= K) >> 15);\
I = (K << 1) + ((S >> (K + (TREEBIN_SHIFT-1)) & 1));\
}\
}
#define TREEBIN_SHIFT
#define NTREEBINS
if(extra_options)
Definition: dynamic_load.c:958
else

Definition at line 2288 of file malloc_2_8_3.c.

Referenced by change_mparam(), and tmalloc_large().

#define CORRUPTION_ERROR_ACTION (   m)    ABORT

Definition at line 2219 of file malloc_2_8_3.c.

Referenced by tmalloc_large(), and tmalloc_small().

#define DEFAULT_GRANULARITY   (0) /* 0 means to compute in init_mparams */

Definition at line 579 of file malloc_2_8_3.c.

Referenced by init_mparams().

#define DEFAULT_MMAP_THRESHOLD   ((size_t)256U * (size_t)1024U)

Definition at line 593 of file malloc_2_8_3.c.

Referenced by init_mparams().

#define DEFAULT_TRIM_THRESHOLD   ((size_t)2U * (size_t)1024U * (size_t)1024U)

Definition at line 586 of file malloc_2_8_3.c.

Referenced by init_mparams().

#define DIRECT_MMAP (   s)    CALL_MMAP(s)

Definition at line 1361 of file malloc_2_8_3.c.

Referenced by mmap_alloc().

#define disable_contiguous (   M)    ((M)->mflags |= USE_NONCONTIGUOUS_BIT)

Definition at line 2103 of file malloc_2_8_3.c.

Referenced by dlmallopt(), and sys_alloc().

#define disable_lock (   M)    ((M)->mflags &= ~USE_LOCK_BIT)

Definition at line 2096 of file malloc_2_8_3.c.

#define disable_mmap (   M)    ((M)->mflags &= ~USE_MMAP_BIT)

Definition at line 2100 of file malloc_2_8_3.c.

Referenced by ialloc().

#define dlcalloc   calloc

Definition at line 680 of file malloc_2_8_3.c.

#define dlfree   free

Definition at line 681 of file malloc_2_8_3.c.

Referenced by dlrealloc().

#define dlindependent_calloc   independent_calloc

Definition at line 694 of file malloc_2_8_3.c.

#define dlindependent_comalloc   independent_comalloc

Definition at line 695 of file malloc_2_8_3.c.

#define dlmallinfo   mallinfo

Definition at line 687 of file malloc_2_8_3.c.

#define dlmalloc   malloc

Definition at line 682 of file malloc_2_8_3.c.

Referenced by dlcalloc(), and dlrealloc().

#define dlmalloc_footprint   malloc_footprint

Definition at line 692 of file malloc_2_8_3.c.

#define dlmalloc_max_footprint   malloc_max_footprint

Definition at line 693 of file malloc_2_8_3.c.

void dlmalloc_stats   malloc_stats

Definition at line 690 of file malloc_2_8_3.c.

#define dlmalloc_trim   malloc_trim

Definition at line 689 of file malloc_2_8_3.c.

#define dlmalloc_usable_size   malloc_usable_size

Definition at line 691 of file malloc_2_8_3.c.

#define dlmallopt   mallopt

Definition at line 688 of file malloc_2_8_3.c.

#define dlmemalign   memalign

Definition at line 683 of file malloc_2_8_3.c.

Referenced by dlpvalloc(), and dlvalloc().

#define dlpvalloc   pvalloc

Definition at line 686 of file malloc_2_8_3.c.

#define dlrealloc   realloc

Definition at line 684 of file malloc_2_8_3.c.

#define dlvalloc   valloc

Definition at line 685 of file malloc_2_8_3.c.

#define enable_lock (   M)    ((M)->mflags |= USE_LOCK_BIT)

Definition at line 2095 of file malloc_2_8_3.c.

#define enable_mmap (   M)    ((M)->mflags |= USE_MMAP_BIT)

Definition at line 2099 of file malloc_2_8_3.c.

Referenced by ialloc().

#define EXTERN_BIT   (8U)

Definition at line 1425 of file malloc_2_8_3.c.

Referenced by dlmallopt().

#define FENCEPOST_HEAD   (INUSE_BITS|SIZE_T_SIZE)
#define fm   gm

Referenced by dlfree(), and dlmallopt().

#define FOOTERS   0

Definition at line 527 of file malloc_2_8_3.c.

#define FOUR_SIZE_T_SIZES   (SIZE_T_SIZE<<2)

Definition at line 1291 of file malloc_2_8_3.c.

Referenced by add_segment().

#define get_foot (   p,
 
)    (((mchunkptr)((char*)(p) + (s)))->prev_foot)

Definition at line 1748 of file malloc_2_8_3.c.

#define granularity_align (   S)    (((S) + (mparams.granularity)) & ~(mparams.granularity - SIZE_T_ONE))

Definition at line 2115 of file malloc_2_8_3.c.

Referenced by dlmallopt(), mmap_alloc(), mmap_resize(), and sys_alloc().

#define HALF_MAX_SIZE_T   (MAX_SIZE_T / 2U)

Definition at line 1293 of file malloc_2_8_3.c.

Referenced by sys_alloc(), and sys_trim().

#define HAVE_MMAP   1

Definition at line 545 of file malloc_2_8_3.c.

Referenced by sys_alloc(), and sys_trim().

#define HAVE_MORECORE   1

Definition at line 564 of file malloc_2_8_3.c.

Referenced by sys_alloc(), and sys_trim().

#define HAVE_MREMAP   0

Definition at line 554 of file malloc_2_8_3.c.

#define idx2bit (   i)    ((binmap_t)(1) << (i))

Definition at line 2325 of file malloc_2_8_3.c.

Referenced by dlmalloc(), dlmallopt(), and tmalloc_large().

#define INITIAL_LOCK (   l)

Definition at line 1501 of file malloc_2_8_3.c.

Referenced by dlmallopt(), and init_mparams().

#define INSECURE   0

Definition at line 542 of file malloc_2_8_3.c.

#define insert_chunk (   M,
  P,
 
)
Value:
if (is_small(S)) insert_small_chunk(M, P, S)\
else { tchunkptr TP = (tchunkptr)(P); insert_large_chunk(M, TP, S); }
#define is_small(s)
struct malloc_tree_chunk * tchunkptr
#define insert_small_chunk(M, P, S)
#define insert_large_chunk(M, X, S)
else

Definition at line 3218 of file malloc_2_8_3.c.

Referenced by add_segment(), dlfree(), dlmallopt(), prepend_alloc(), and tmalloc_large().

#define insert_large_chunk (   M,
  X,
 
)

Definition at line 3077 of file malloc_2_8_3.c.

Referenced by release_unused_segments().

#define insert_small_chunk (   M,
  P,
 
)
Value:
{\
else if (RTCHECK(ok_address(M, B->fd)))\
F = B->fd;\
}\
B->fd = P;\
F->bk = P;\
P->fd = F;\
P->bk = B;\
}
#define MIN_CHUNK_SIZE
#define CORRUPTION_ERROR_ACTION(m)
unsigned int bindex_t
struct malloc_chunk * mchunkptr
#define mark_smallmap(M, i)
#define assert(x)
#define small_index(s)
#define RTCHECK(e)
if(extra_options)
Definition: dynamic_load.c:958
#define ok_address(M, a)
#define smallbin_at(M, i)
else
#define smallmap_is_marked(M, i)

Definition at line 3006 of file malloc_2_8_3.c.

#define internal_free (   m,
  mem 
)    dlfree(mem)

Definition at line 3240 of file malloc_2_8_3.c.

Referenced by internal_memalign(), and internal_realloc().

#define internal_malloc (   m,
 
)    dlmalloc(b)

Definition at line 3239 of file malloc_2_8_3.c.

Referenced by dlmallopt(), ialloc(), internal_memalign(), and internal_realloc().

#define INUSE_BITS   (PINUSE_BIT|CINUSE_BIT)

Definition at line 1723 of file malloc_2_8_3.c.

Referenced by dlfree(), and dlmallopt().

#define is_aligned (   A)    (((size_t)((A)) & (CHUNK_ALIGN_MASK)) == 0)

Definition at line 1299 of file malloc_2_8_3.c.

Referenced by add_segment(), change_mparam(), and mmap_alloc().

#define is_extern_segment (   S)    ((S)->sflags & EXTERN_BIT)

Definition at line 1950 of file malloc_2_8_3.c.

Referenced by release_unused_segments(), sys_alloc(), and sys_trim().

#define is_global (   M)    ((M) == &_gm_)
#define is_granularity_aligned (   S)    (((size_t)(S) & (mparams.granularity - SIZE_T_ONE)) == 0)

Definition at line 2120 of file malloc_2_8_3.c.

#define is_initialized (   M)    ((M)->top != 0)
#define is_mmapped (   p)    (!((p)->head & PINUSE_BIT) && ((p)->prev_foot & IS_MMAPPED_BIT))

Definition at line 1759 of file malloc_2_8_3.c.

Referenced by change_mparam(), ialloc(), internal_memalign(), and internal_realloc().

#define IS_MMAPPED_BIT   (SIZE_T_ONE)

Definition at line 1327 of file malloc_2_8_3.c.

Referenced by change_mparam(), dlfree(), dlmallopt(), mmap_alloc(), mmap_resize(), and sys_alloc().

#define is_mmapped_segment (   S)    ((S)->sflags & IS_MMAPPED_BIT)

Definition at line 1949 of file malloc_2_8_3.c.

Referenced by release_unused_segments(), and sys_trim().

#define is_page_aligned (   S)    (((size_t)(S) & (mparams.page_size - SIZE_T_ONE)) == 0)

Definition at line 2118 of file malloc_2_8_3.c.

Referenced by sys_alloc().

#define is_small (   s)    (((s) >> SMALLBIN_SHIFT) < NSMALLBINS)

Definition at line 2263 of file malloc_2_8_3.c.

Referenced by change_mparam(), and mmap_resize().

#define least_bit (   x)    ((x) & -(x))

Definition at line 2366 of file malloc_2_8_3.c.

Referenced by dlmalloc(), dlmallopt(), tmalloc_large(), and tmalloc_small().

#define left_bits (   x)    ((x<<1) | -(x<<1))

Definition at line 2369 of file malloc_2_8_3.c.

Referenced by dlmalloc(), dlmallopt(), and tmalloc_large().

#define leftmost_child (   t)    ((t)->child[0] != 0? (t)->child[0] : (t)->child[1])

Definition at line 1882 of file malloc_2_8_3.c.

Referenced by tmalloc_large(), and tmalloc_small().

#define leftshift_for_tree_index (   i)
Value:
((i == NTREEBINS-1)? 0 : \
((SIZE_T_BITSIZE-SIZE_T_ONE) - (((i) >> 1) + TREEBIN_SHIFT - 2)))
#define TREEBIN_SHIFT
#define NTREEBINS
#define SIZE_T_BITSIZE
#define SIZE_T_ONE
int i
Definition: dynamic_load.c:954

Definition at line 2312 of file malloc_2_8_3.c.

Referenced by change_mparam(), and tmalloc_large().

#define M_GRANULARITY   (-2)

Definition at line 619 of file malloc_2_8_3.c.

Referenced by change_mparam().

#define M_MMAP_THRESHOLD   (-3)

Definition at line 620 of file malloc_2_8_3.c.

Referenced by change_mparam().

#define M_TRIM_THRESHOLD   (-1)

Definition at line 618 of file malloc_2_8_3.c.

Referenced by change_mparam().

#define MALLINFO_FIELD_TYPE   size_t

Definition at line 608 of file malloc_2_8_3.c.

#define MALLOC_ALIGNMENT   ((size_t)8U)

Definition at line 524 of file malloc_2_8_3.c.

Referenced by init_mparams(), and internal_memalign().

#define MALLOC_FAILURE_ACTION   errno = ENOMEM;

Definition at line 558 of file malloc_2_8_3.c.

Referenced by internal_memalign(), internal_realloc(), and sys_alloc().

#define malloc_getpagesize   ((size_t)4096U)

Definition at line 1268 of file malloc_2_8_3.c.

Referenced by init_mparams().

#define mark_inuse_foot (   M,
  p,
 
)

Definition at line 2443 of file malloc_2_8_3.c.

Referenced by mmap_alloc(), and mmap_resize().

#define mark_smallmap (   M,
  i 
)    ((M)->smallmap |= idx2bit(i))

Definition at line 2328 of file malloc_2_8_3.c.

#define mark_treemap (   M,
  i 
)    ((M)->treemap |= idx2bit(i))

Definition at line 2332 of file malloc_2_8_3.c.

#define MAX_REQUEST   ((-MIN_CHUNK_SIZE) << 2)

Definition at line 1699 of file malloc_2_8_3.c.

Referenced by dlmalloc(), dlmallopt(), internal_memalign(), internal_realloc(), and sys_trim().

#define MAX_SIZE_T   (~(size_t)0)

Definition at line 511 of file malloc_2_8_3.c.

Referenced by dlcalloc(), dlmalloc(), dlmallopt(), init_mparams(), and sys_trim().

#define MAX_SMALL_REQUEST   (MAX_SMALL_SIZE - CHUNK_ALIGN_MASK - CHUNK_OVERHEAD)

Definition at line 2038 of file malloc_2_8_3.c.

Referenced by dlmalloc(), and dlmallopt().

#define MAX_SMALL_SIZE   (MIN_LARGE_SIZE - SIZE_T_ONE)

Definition at line 2037 of file malloc_2_8_3.c.

#define MCHUNK_SIZE   (sizeof(mchunk))

Definition at line 1675 of file malloc_2_8_3.c.

Referenced by init_mparams().

#define mem2chunk (   mem)    ((mchunkptr)((char*)(mem) - TWO_SIZE_T_SIZES))
#define MFAIL   ((void*)(MAX_SIZE_T))

Definition at line 1316 of file malloc_2_8_3.c.

Referenced by sys_trim().

#define MIN_LARGE_SIZE   (SIZE_T_ONE << TREEBIN_SHIFT)

Definition at line 2036 of file malloc_2_8_3.c.

Referenced by change_mparam().

#define MIN_REQUEST   (MIN_CHUNK_SIZE - CHUNK_OVERHEAD - SIZE_T_ONE)

Definition at line 1700 of file malloc_2_8_3.c.

Referenced by dlmalloc(), and dlmallopt().

#define MIN_SMALL_INDEX   (small_index(MIN_CHUNK_SIZE))

Definition at line 2266 of file malloc_2_8_3.c.

#define minsize_for_tree_index (   i)
Value:
((SIZE_T_ONE << (((i) >> 1) + TREEBIN_SHIFT)) | \
(((size_t)((i) & SIZE_T_ONE)) << (((i) >> 1) + TREEBIN_SHIFT - 1)))
#define TREEBIN_SHIFT
#define SIZE_T_ONE
int i
Definition: dynamic_load.c:954

Definition at line 2317 of file malloc_2_8_3.c.

Referenced by change_mparam().

#define MMAP_CHUNK_OVERHEAD   (TWO_SIZE_T_SIZES)

Definition at line 1684 of file malloc_2_8_3.c.

#define MMAP_CLEARS   1

Definition at line 548 of file malloc_2_8_3.c.

#define MMAP_FLAGS   (MAP_PRIVATE)

Definition at line 1353 of file malloc_2_8_3.c.

#define MMAP_FOOT_PAD   (FOUR_SIZE_T_SIZES)

Definition at line 1686 of file malloc_2_8_3.c.

Referenced by change_mparam(), dlfree(), dlmallopt(), mmap_alloc(), and mmap_resize().

#define MMAP_PROT   (PROT_READ|PROT_WRITE)

Definition at line 1341 of file malloc_2_8_3.c.

#define MORECORE   sbrk

Definition at line 571 of file malloc_2_8_3.c.

#define MORECORE_CONTIGUOUS   1

Definition at line 574 of file malloc_2_8_3.c.

Referenced by sys_alloc().

#define MSPACES   0

Definition at line 520 of file malloc_2_8_3.c.

#define next_chunk (   p)    ((mchunkptr)( ((char*)(p)) + ((p)->head & ~INUSE_BITS)))
#define next_pinuse (   p)    ((next_chunk(p)->head) & PINUSE_BIT)

Definition at line 1745 of file malloc_2_8_3.c.

Referenced by change_mparam().

#define NO_MALLINFO   0

Definition at line 605 of file malloc_2_8_3.c.

#define NSMALLBINS   (32U)

Definition at line 2031 of file malloc_2_8_3.c.

Referenced by change_mparam(), and init_bins().

#define NTREEBINS   (32U)

Definition at line 2032 of file malloc_2_8_3.c.

Referenced by change_mparam(), and init_bins().

#define ok_address (   M,
 
)    ((char*)(a) >= (M)->least_addr)
#define ok_cinuse (   p)    cinuse(p)

Definition at line 2409 of file malloc_2_8_3.c.

Referenced by dlfree(), dlmallopt(), and internal_realloc().

#define ok_magic (   M)    (1)

Definition at line 2424 of file malloc_2_8_3.c.

Referenced by dlfree(), dlmallopt(), and dlrealloc().

#define ok_next (   p,
 
)    ((char*)(p) < (char*)(n))

Definition at line 2407 of file malloc_2_8_3.c.

Referenced by dlfree(), dlmallopt(), internal_realloc(), tmalloc_large(), and tmalloc_small().

#define ok_pinuse (   p)    pinuse(p)

Definition at line 2411 of file malloc_2_8_3.c.

Referenced by dlfree(), dlmallopt(), and internal_realloc().

#define ONLY_MSPACES   0

Definition at line 514 of file malloc_2_8_3.c.

#define overhead_for (   p)    (is_mmapped(p)? MMAP_CHUNK_OVERHEAD : CHUNK_OVERHEAD)

Definition at line 1763 of file malloc_2_8_3.c.

Referenced by dlmalloc_usable_size(), and internal_realloc().

#define pad_request (   req)    (((req) + CHUNK_OVERHEAD + CHUNK_ALIGN_MASK) & ~CHUNK_ALIGN_MASK)

Definition at line 1703 of file malloc_2_8_3.c.

Referenced by add_segment(), dlmalloc(), and dlmallopt().

#define page_align (   S)    (((S) + (mparams.page_size)) & ~(mparams.page_size - SIZE_T_ONE))

Definition at line 2111 of file malloc_2_8_3.c.

Referenced by sys_alloc().

#define pinuse (   p)    ((p)->head & PINUSE_BIT)

Definition at line 1730 of file malloc_2_8_3.c.

Referenced by change_mparam(), dlfree(), dlmallopt(), and prepend_alloc().

#define PINUSE_BIT   (SIZE_T_ONE)
#define PREACTION (   M)    (0)
#define prev_chunk (   p)    ((mchunkptr)( ((char*)(p)) - ((p)->prev_foot) ))

Definition at line 1742 of file malloc_2_8_3.c.

Referenced by change_mparam().

#define PROCEED_ON_ERROR   0

Definition at line 536 of file malloc_2_8_3.c.

#define RELEASE_MAGIC_INIT_LOCK ( )

Definition at line 1517 of file malloc_2_8_3.c.

Referenced by init_mparams().

#define RELEASE_MORECORE_LOCK ( )

Definition at line 1509 of file malloc_2_8_3.c.

Referenced by sys_alloc(), and sys_trim().

#define replace_dv (   M,
  P,
 
)
Value:
{\
size_t DVS = M->dvsize;\
if (DVS != 0) {\
mchunkptr DV = M->dv;\
insert_small_chunk(M, DV, DVS);\
}\
M->dvsize = S;\
M->dv = P;\
}
#define is_small(s)
struct malloc_chunk * mchunkptr
#define assert(x)
#define insert_small_chunk(M, P, S)
if(extra_options)
Definition: dynamic_load.c:958

Definition at line 3063 of file malloc_2_8_3.c.

Referenced by dlmalloc(), dlmallopt(), and tmalloc_small().

#define request2size (   req)    (((req) < MIN_REQUEST)? MIN_CHUNK_SIZE : pad_request(req))

Definition at line 1707 of file malloc_2_8_3.c.

Referenced by ialloc(), internal_memalign(), and internal_realloc().

#define RTCHECK (   e)    (e)

Definition at line 2433 of file malloc_2_8_3.c.

Referenced by dlfree(), dlmallopt(), internal_realloc(), tmalloc_large(), and tmalloc_small().

#define same_or_left_bits (   x)    ((x) | -(x))

Definition at line 2372 of file malloc_2_8_3.c.

#define segment_holds (   S,
 
)    ((char*)(A) >= S->base && (char*)(A) < S->base + S->size)
#define set_foot (   p,
 
)    (((mchunkptr)((char*)(p) + (s)))->prev_foot = (s))

Definition at line 1749 of file malloc_2_8_3.c.

#define set_free_with_pinuse (   p,
  s,
 
)    (clear_pinuse(n), set_size_and_pinuse_of_free_chunk(p, s))

Definition at line 1756 of file malloc_2_8_3.c.

Referenced by add_segment(), dlfree(), dlmallopt(), and prepend_alloc().

#define set_inuse (   M,
  p,
 
)
Value:
((p)->head = (((p)->head & PINUSE_BIT)|s|CINUSE_BIT),\
((mchunkptr)(((char*)(p)) + (s)))->head |= PINUSE_BIT)
#define CINUSE_BIT
#define PINUSE_BIT
const char ** p
Definition: dynamic_load.c:945

Definition at line 2446 of file malloc_2_8_3.c.

Referenced by internal_memalign(), and internal_realloc().

#define set_inuse_and_pinuse (   M,
  p,
 
)
Value:
((p)->head = (s|PINUSE_BIT|CINUSE_BIT),\
((mchunkptr)(((char*)(p)) + (s)))->head |= PINUSE_BIT)
#define CINUSE_BIT
struct malloc_chunk * mchunkptr
#define PINUSE_BIT
const char ** p
Definition: dynamic_load.c:945

Definition at line 2451 of file malloc_2_8_3.c.

Referenced by dlmalloc(), dlmallopt(), tmalloc_large(), and tmalloc_small().

#define set_lock (   M,
 
)
Value:
((M)->mflags = (L)?\
((M)->mflags | USE_LOCK_BIT) :\
((M)->mflags & ~USE_LOCK_BIT))
#define USE_LOCK_BIT

Definition at line 2105 of file malloc_2_8_3.c.

Referenced by dlmallopt().

#define set_size_and_pinuse_of_free_chunk (   p,
 
)    ((p)->head = (s|PINUSE_BIT), set_foot(p, s))
#define set_size_and_pinuse_of_inuse_chunk (   M,
  p,
 
)    ((p)->head = (s|PINUSE_BIT|CINUSE_BIT))
#define should_trim (   M,
 
)    ((s) > (M)->trim_check)

Definition at line 2156 of file malloc_2_8_3.c.

Referenced by dlfree(), and dlmallopt().

#define SIX_SIZE_T_SIZES   (FOUR_SIZE_T_SIZES+TWO_SIZE_T_SIZES)

Definition at line 1292 of file malloc_2_8_3.c.

Referenced by mmap_alloc(), and mmap_resize().

#define SIZE_T_BITSIZE   (sizeof(size_t) << 3)

Definition at line 1283 of file malloc_2_8_3.c.

Referenced by change_mparam(), and tmalloc_large().

#define SIZE_T_ONE   ((size_t)1)
#define SIZE_T_SIZE   (sizeof(size_t))
#define SIZE_T_TWO   ((size_t)2)

Definition at line 1289 of file malloc_2_8_3.c.

#define SIZE_T_ZERO   ((size_t)0)

Definition at line 1287 of file malloc_2_8_3.c.

#define small_index (   s)    ((s) >> SMALLBIN_SHIFT)

Definition at line 2264 of file malloc_2_8_3.c.

Referenced by change_mparam(), dlmalloc(), and dlmallopt().

#define small_index2size (   i)    ((i) << SMALLBIN_SHIFT)

Definition at line 2265 of file malloc_2_8_3.c.

Referenced by dlmalloc(), and dlmallopt().

#define smallbin_at (   M,
  i 
)    ((sbinptr)((char*)&((M)->smallbins[(i)<<1])))

Definition at line 2269 of file malloc_2_8_3.c.

Referenced by change_mparam(), dlmalloc(), dlmallopt(), and init_bins().

#define SMALLBIN_SHIFT   (3U)

Definition at line 2033 of file malloc_2_8_3.c.

#define SMALLBIN_WIDTH   (SIZE_T_ONE << SMALLBIN_SHIFT)

Definition at line 2034 of file malloc_2_8_3.c.

#define smallmap_is_marked (   M,
  i 
)    ((M)->smallmap & idx2bit(i))

Definition at line 2330 of file malloc_2_8_3.c.

Referenced by change_mparam().

#define treebin_at (   M,
  i 
)    (&((M)->treebins[i]))

Definition at line 2270 of file malloc_2_8_3.c.

Referenced by change_mparam(), init_bins(), tmalloc_large(), and tmalloc_small().

#define TREEBIN_SHIFT   (8U)

Definition at line 2035 of file malloc_2_8_3.c.

#define treemap_is_marked (   M,
  i 
)    ((M)->treemap & idx2bit(i))

Definition at line 2334 of file malloc_2_8_3.c.

Referenced by change_mparam().

#define TWO_SIZE_T_SIZES   (SIZE_T_SIZE<<1)

Definition at line 1290 of file malloc_2_8_3.c.

#define unlink_chunk (   M,
  P,
 
)
Value:
if (is_small(S)) unlink_small_chunk(M, P, S)\
#define is_small(s)
struct malloc_tree_chunk * tchunkptr
#define unlink_small_chunk(M, P, S)
#define unlink_large_chunk(M, X)
else

Definition at line 3222 of file malloc_2_8_3.c.

Referenced by dlfree(), dlmallopt(), and prepend_alloc().

#define unlink_first_small_chunk (   M,
  B,
  P,
 
)
Value:
{\
mchunkptr F = P->fd;\
assert(P != B);\
assert(P != F);\
if (B == F)\
else if (RTCHECK(ok_address(M, F))) {\
B->fd = F;\
F->bk = B;\
}\
}\
}
#define CORRUPTION_ERROR_ACTION(m)
#define small_index2size(i)
#define chunksize(p)
struct malloc_chunk * mchunkptr
#define assert(x)
#define RTCHECK(e)
struct malloc_chunk * fd
if(extra_options)
Definition: dynamic_load.c:958
#define ok_address(M, a)
#define clear_smallmap(M, i)
else

Definition at line 3045 of file malloc_2_8_3.c.

Referenced by dlmalloc(), and dlmallopt().

#define unlink_large_chunk (   M,
 
)

Definition at line 3145 of file malloc_2_8_3.c.

Referenced by release_unused_segments(), tmalloc_large(), and tmalloc_small().

#define unlink_small_chunk (   M,
  P,
 
)
Value:
{\
mchunkptr F = P->fd;\
mchunkptr B = P->bk;\
assert(P != B);\
assert(P != F);\
if (F == B)\
else if (RTCHECK((F == smallbin_at(M,I) || ok_address(M, F)) &&\
(B == smallbin_at(M,I) || ok_address(M, B)))) {\
F->bk = B;\
B->fd = F;\
}\
}\
}
#define CORRUPTION_ERROR_ACTION(m)
struct malloc_chunk * bk
#define small_index2size(i)
#define chunksize(p)
unsigned int bindex_t
struct malloc_chunk * mchunkptr
#define assert(x)
#define small_index(s)
#define RTCHECK(e)
struct malloc_chunk * fd
if(extra_options)
Definition: dynamic_load.c:958
#define ok_address(M, a)
#define clear_smallmap(M, i)
#define smallbin_at(M, i)
else

Definition at line 3025 of file malloc_2_8_3.c.

#define USAGE_ERROR_ACTION (   m,
  p 
)    ABORT

Definition at line 2223 of file malloc_2_8_3.c.

Referenced by dlfree(), dlmallopt(), dlrealloc(), and internal_realloc().

#define USE_BUILTIN_FFS   0

Definition at line 599 of file malloc_2_8_3.c.

#define USE_DEV_RANDOM   0

Definition at line 602 of file malloc_2_8_3.c.

#define use_lock (   M)    ((M)->mflags & USE_LOCK_BIT)

Definition at line 2094 of file malloc_2_8_3.c.

#define USE_LOCK_BIT   (0U)

Definition at line 1500 of file malloc_2_8_3.c.

Referenced by init_mparams().

#define USE_LOCKS   0

Definition at line 539 of file malloc_2_8_3.c.

#define USE_MALLOC_INSTEAD   0

Definition at line 1331 of file malloc_2_8_3.c.

Referenced by sys_trim().

#define use_mmap (   M)    ((M)->mflags & USE_MMAP_BIT)

Definition at line 2098 of file malloc_2_8_3.c.

Referenced by change_mparam(), ialloc(), and sys_alloc().

#define USE_MMAP_BIT   (SIZE_T_ONE)

Definition at line 1328 of file malloc_2_8_3.c.

Referenced by init_mparams().

#define use_noncontiguous (   M)    ((M)->mflags & USE_NONCONTIGUOUS_BIT)

Definition at line 2102 of file malloc_2_8_3.c.

Referenced by sys_alloc().

#define USE_NONCONTIGUOUS_BIT   (4U)

Definition at line 1422 of file malloc_2_8_3.c.

Referenced by init_mparams().

Typedef Documentation

typedef unsigned int bindex_t

Definition at line 1669 of file malloc_2_8_3.c.

typedef unsigned int binmap_t

Definition at line 1670 of file malloc_2_8_3.c.

typedef unsigned int flag_t

Definition at line 1671 of file malloc_2_8_3.c.

typedef struct malloc_chunk mchunk

Definition at line 1666 of file malloc_2_8_3.c.

typedef struct malloc_chunk* mchunkptr

Definition at line 1667 of file malloc_2_8_3.c.

typedef struct malloc_segment msegment

Definition at line 1952 of file malloc_2_8_3.c.

typedef struct malloc_segment* msegmentptr

Definition at line 1953 of file malloc_2_8_3.c.

typedef struct malloc_state* mstate

Definition at line 2062 of file malloc_2_8_3.c.

typedef struct malloc_chunk* sbinptr

Definition at line 1668 of file malloc_2_8_3.c.

typedef struct malloc_tree_chunk* tbinptr

Definition at line 1879 of file malloc_2_8_3.c.

typedef struct malloc_tree_chunk tchunk

Definition at line 1877 of file malloc_2_8_3.c.

typedef struct malloc_tree_chunk* tchunkptr

Definition at line 1878 of file malloc_2_8_3.c.

Function Documentation

void * dlcalloc ( size_t  n_elements,
size_t  elem_size 
)

Definition at line 4566 of file malloc_2_8_3.c.

References calloc_must_clear, dlmalloc, MAX_SIZE_T, and mem2chunk.

void** dlindependent_calloc ( size_t  ,
size_t  ,
void **   
)
void** dlindependent_calloc ( size_t  n_elements,
size_t  elem_size,
void *  chunks[] 
)

Definition at line 4617 of file malloc_2_8_3.c.

References gm, and ialloc().

void** dlindependent_comalloc ( size_t  ,
size_t *  ,
void **   
)
void** dlindependent_comalloc ( size_t  n_elements,
size_t  sizes[],
void *  chunks[] 
)

Definition at line 4624 of file malloc_2_8_3.c.

References gm, and ialloc().

struct mallinfo dlmallinfo ( void  )

Definition at line 4673 of file malloc_2_8_3.c.

References gm, and internal_mallinfo().

size_t dlmalloc_footprint ( void  )

Definition at line 4660 of file malloc_2_8_3.c.

References gm.

size_t dlmalloc_max_footprint ( void  )

Definition at line 4666 of file malloc_2_8_3.c.

References gm.

void dlmalloc_stats ( void  )

Definition at line 4680 of file malloc_2_8_3.c.

References gm, and internal_malloc_stats().

int dlmalloc_trim ( size_t  pad)

Definition at line 4648 of file malloc_2_8_3.c.

References gm, POSTACTION, PREACTION, and sys_trim().

size_t dlmalloc_usable_size ( void *  mem)

Definition at line 4686 of file malloc_2_8_3.c.

References chunksize, cinuse, mem2chunk, and overhead_for.

int dlmallopt ( int  param_number,
int  value 
)

Definition at line 4698 of file malloc_2_8_3.c.

References align_as_chunk, assert, malloc_segment::base, CALL_MMAP, CALL_MUNMAP, calloc_must_clear, change_mparam(), check_free_chunk, check_inuse_chunk, check_malloced_chunk, check_top_chunk, chunk2mem, chunk_minus_offset, chunk_plus_offset, chunksize, cinuse, CINUSE_BIT, CMFAIL, compute_bit2idx, malloc_params::default_mflags, disable_contiguous, malloc_state::dv, malloc_state::dvsize, EXTERN_BIT, malloc_chunk::fd, fm, malloc_state::footprint, malloc_params::granularity, granularity_align, malloc_chunk::head, i, ialloc(), idx2bit, init_bins(), init_mparams(), init_top(), INITIAL_LOCK, insert_chunk, internal_mallinfo(), internal_malloc, internal_malloc_stats(), internal_memalign(), internal_realloc(), INUSE_BITS, IS_MMAPPED_BIT, malloc_state::least_addr, least_bit, left_bits, malloc_state::magic, malloc_params::magic, malloc_state::max_footprint, MAX_REQUEST, MAX_SIZE_T, MAX_SMALL_REQUEST, mem2chunk, malloc_state::mflags, MIN_CHUNK_SIZE, MIN_REQUEST, MMAP_FOOT_PAD, MMAP_TRACE_H_SIZE, mparams, munmap_is_to_be_called(), malloc_segment::next, next_chunk, ok_address, ok_cinuse, ok_magic, ok_next, ok_pinuse, p, pad_request, malloc_params::page_size, pinuse, PINUSE_BIT, POSTACTION, PREACTION, malloc_chunk::prev_foot, replace_dv, RTCHECK, malloc_state::seg, set_free_with_pinuse, set_inuse_and_pinuse, set_lock, set_size_and_pinuse_of_free_chunk, set_size_and_pinuse_of_inuse_chunk, malloc_segment::sflags, should_trim, malloc_segment::size, SIZE_T_SIZE, small_index, small_index2size, smallbin_at, malloc_state::smallmap, sys_alloc(), sys_trim(), tmalloc_large(), tmalloc_small(), malloc_state::top, TOP_FOOT_SIZE, malloc_state::topsize, malloc_state::treemap, unlink_chunk, unlink_first_small_chunk, and USAGE_ERROR_ACTION.

void * dlmemalign ( size_t  alignment,
size_t  bytes 
)

Definition at line 4611 of file malloc_2_8_3.c.

References gm, and internal_memalign().

void * dlpvalloc ( size_t  bytes)

Definition at line 4639 of file malloc_2_8_3.c.

References dlmemalign, init_mparams(), mparams, malloc_params::page_size, and SIZE_T_ONE.

void * dlrealloc ( void *  oldmem,
size_t  bytes 
)

Definition at line 4583 of file malloc_2_8_3.c.

References dlfree, dlmalloc, gm, internal_realloc(), mem2chunk, ok_magic, and USAGE_ERROR_ACTION.

void * dlvalloc ( size_t  bytes)

Definition at line 4630 of file malloc_2_8_3.c.

References dlmemalign, init_mparams(), mparams, and malloc_params::page_size.

static int has_segment_link ( mstate  m,
msegmentptr  ss 
)
static

Definition at line 2143 of file malloc_2_8_3.c.

References malloc_segment::base, malloc_segment::next, malloc_state::seg, and malloc_segment::size.

Referenced by sys_trim().

Here is the caller graph for this function:

static void** ialloc ( mstate  m,
size_t  n_elements,
size_t *  sizes,
int  opts,
void *  chunks[] 
)
static
static void init_top ( mstate  m,
mchunkptr  p,
size_t  psize 
)
static
static void* internal_memalign ( mstate  m,
size_t  alignment,
size_t  bytes 
)
static
static msegmentptr segment_holding ( mstate  m,
char *  addr 
)
static

Definition at line 2129 of file malloc_2_8_3.c.

References malloc_segment::base, malloc_segment::next, malloc_state::seg, and malloc_segment::size.

Referenced by add_segment(), change_mparam(), sys_alloc(), and sys_trim().

Here is the caller graph for this function:

Variable Documentation

struct malloc_state _gm_
static

Definition at line 2085 of file malloc_2_8_3.c.

int dev_zero_fd = -1
static

Definition at line 1354 of file malloc_2_8_3.c.