The world's most popular open source database
#include <my_config.h>#include <stdio.h>#include <math.h>#include <time.h>#include <errno.h>#include <assert.h>#include <my_dbug.h>Include dependency graph for my_global.h:

This graph shows which files directly or indirectly include this file:

Go to the source code of this file.
Defines | |
| #define | HAVE_REPLICATION |
| #define | HAVE_EXTERNAL_CLIENT |
| #define | C_MODE_START |
| #define | C_MODE_END |
| #define | NETWARE_SET_SCREEN_MODE(A) |
| #define | __builtin_expect(x, expected_value) (x) |
| #define | likely(x) __builtin_expect((x),1) |
| #define | unlikely(x) __builtin_expect((x),0) |
| #define | PREFETCH_READ(addr) |
| #define | PREFETCH_READ_LOCALITY(addr, locality) |
| #define | PREFETCH_WRITE(addr) |
| #define | PREFETCH_WRITE_LOCALITY(addr, locality) |
| #define | HOT_METHOD |
| #define | HOT_DATA |
| #define | inline_test_1(X) X ## 1 |
| #define | inline_test_2(X) inline_test_1(X) |
| #define | HAVE_INLINE |
| #define | ALWAYS_INLINE |
| #define | NEVER_INLINE |
| #define | __EXTENSIONS__ 1 |
| #define | __STDC_EXT__ 1 |
| #define | USE_MYFUNC 1 |
| #define | MASTER 1 |
| #define | ENGLISH 1 |
| #define | POSIX_MISTAKE 1 |
| #define | USE_REGEX 1 |
| #define | USE_BMOVE512 1 |
| #define | QUOTE_ARG(x) #x |
| #define | STRINGIFY_ARG(x) QUOTE_ARG(x) |
| #define | DONT_REMEMBER_SIGNAL |
| #define | VOID(X) (X) |
| #define | LINT_INIT(var) |
| #define | PURIFY_OR_LINT_INIT(var) |
| #define | max(a, b) ((a) > (b) ? (a) : (b)) |
| #define | min(a, b) ((a) < (b) ? (a) : (b)) |
| #define | HAVE_UINT |
| #define | CMP_NUM(a, b) (((a) < (b)) ? -1 : ((a) == (b)) ? 0 : 1) |
| #define | sgn(a) (((a) < 0) ? -1 : ((a) > 0) ? 1 : 0) |
| #define | swap_variables(t, a, b) { register t dummy; dummy= a; a= b; b= dummy; } |
| #define | test(a) ((a) ? 1 : 0) |
| #define | set_if_bigger(a, b) do { if ((a) < (b)) (a)=(b); } while(0) |
| #define | set_if_smaller(a, b) do { if ((a) > (b)) (a)=(b); } while(0) |
| #define | test_all_bits(a, b) (((a) & (b)) == (b)) |
| #define | set_bits(type, bit_count) (sizeof(type)*8 <= (bit_count) ? ~(type) 0 : ((((type) 1) << (bit_count)) - (type) 1)) |
| #define | array_elements(A) ((uint) (sizeof(A)/sizeof(A[0]))) |
| #define | rint(A) floor((A)+(((A) < 0)? -0.5 : 0.5)) |
| #define | TRUE (1) |
| #define | FALSE (0) |
| #define | my_reinterpret_cast(A) (A) |
| #define | my_const_cast(A) (A) |
| #define | __attribute__(A) |
| #define | _VARARGS(X) X |
| #define | _STATIC_VARARGS(X) X |
| #define | _PC(X) X |
| #define | MIN_ARRAY_SIZE 0 |
| #define | ASCII_BITS_USED 8 |
| #define | NEAR_F |
| #define | INVALID_SOCKET -1 |
| #define | sig_handler RETSIGTYPE |
| #define | qsort_t RETQSORTTYPE |
| #define | SOCKOPT_OPTLEN_TYPE size_socket |
| #define | O_SHARE 0 |
| #define | O_BINARY 0 |
| #define | FILE_BINARY O_BINARY |
| #define | O_TEMPORARY 0 |
| #define | O_SHORT_LIVED 0 |
| #define | O_NOFOLLOW 0 |
| #define | UNSINT8 |
| #define | UNSINT16 |
| #define | UNSINT32 |
| #define | SC_MAXWIDTH 256 |
| #define | FN_LEN 256 |
| #define | FN_HEADLEN 253 |
| #define | FN_EXTLEN 20 |
| #define | FN_REFLEN 512 |
| #define | FN_EXTCHAR '.' |
| #define | FN_HOMELIB '~' |
| #define | FN_CURLIB '.' |
| #define | FN_PARENTDIR ".." |
| #define | FN_LIBCHAR '/' |
| #define | FN_ROOTDIR "/" |
| #define | MY_NFILE 64 |
| #define | OS_FILE_LIMIT 65535 |
| #define | IO_SIZE 4096 |
| #define | MALLOC_OVERHEAD 8 |
| #define | ONCE_ALLOC_INIT (uint) (4096-MALLOC_OVERHEAD) |
| #define | RECORD_CACHE_SIZE (uint) (64*1024-MALLOC_OVERHEAD) |
| #define | KEY_CACHE_SIZE (uint) (8*1024*1024-MALLOC_OVERHEAD) |
| #define | KEY_CACHE_BLOCK_SIZE (uint) 1024 |
| #define | NO_HASH |
| #define | closesocket(A) close(A) |
| #define | ulonglong2double(A) ((double) (ulonglong) (A)) |
| #define | my_off_t2double(A) ((double) (my_off_t) (A)) |
| #define | offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER) |
| #define | ulong_to_double(X) ((double) (ulong) (X)) |
| #define | SET_STACK_SIZE(X) |
| #define | strtok_r(A, B, C) strtok((A),(B)) |
| #define | INT_MIN32 (~0x7FFFFFFFL) |
| #define | INT_MAX32 0x7FFFFFFFL |
| #define | UINT_MAX32 0xFFFFFFFFL |
| #define | INT_MIN24 (~0x007FFFFF) |
| #define | INT_MAX24 0x007FFFFF |
| #define | UINT_MAX24 0x00FFFFFF |
| #define | INT_MIN16 (~0x7FFF) |
| #define | INT_MAX16 0x7FFF |
| #define | UINT_MAX16 0xFFFF |
| #define | INT_MIN8 (~0x7F) |
| #define | INT_MAX8 0x7F |
| #define | UINT_MAX8 0xFF |
| #define | DBL_MIN 4.94065645841246544e-324 |
| #define | FLT_MIN ((float)1.40129846432481707e-45) |
| #define | DBL_MAX 1.79769313486231470e+308 |
| #define | FLT_MAX ((float)3.40282346638528860e+38) |
| #define | SSIZE_MAX ((~((size_t) 0)) / 2) |
| #define | isinf(X) 0 |
| #define | M_PI 3.14159265358979323846 |
| #define | M_E 2.7182818284590452354 |
| #define | M_LN2 0.69314718055994530942 |
| #define | MY_ALIGN(A, L) (((A) + (L) - 1) & ~((L) - 1)) |
| #define | ALIGN_SIZE(A) MY_ALIGN((A),sizeof(double)) |
| #define | ALIGN_PTR(A, t) ((t*) MY_ALIGN((A),sizeof(t))) |
| #define | OFFSET(t, f) ((size_t)(char *)&((t *)0)->f) |
| #define | ADD_TO_PTR(ptr, size, type) (type) ((byte*) (ptr)+size) |
| #define | PTR_BYTE_DIFF(A, B) (my_ptrdiff_t) ((byte*) (A) - (byte*) (B)) |
| #define | NullS (char *) 0 |
| #define | NEAR |
| #define | FAR |
| #define | STDCALL |
| #define | SYSTEM_SIZEOF_OFF_T SIZEOF_OFF_T |
| #define | MY_FILEPOS_ERROR (~(my_off_t) 0) |
| #define | socket_errno errno |
| #define | closesocket(A) close(A) |
| #define | SOCKET_EINTR EINTR |
| #define | SOCKET_EAGAIN EAGAIN |
| #define | SOCKET_ETIMEDOUT SOCKET_EINTR |
| #define | SOCKET_EWOULDBLOCK EWOULDBLOCK |
| #define | SOCKET_EADDRINUSE EADDRINUSE |
| #define | SOCKET_ENFILE ENFILE |
| #define | SOCKET_EMFILE EMFILE |
| #define | INT8(v) (int8) (v) |
| #define | INT16(v) (int16) (v) |
| #define | INT32(v) (int32) (v) |
| #define | MYF(v) (myf) (v) |
| #define | LL(A) A ## L |
| #define | ULL(A) A ## UL |
| #define | reg1 register |
| #define | reg2 register |
| #define | reg3 register |
| #define | reg4 register |
| #define | reg5 register |
| #define | reg6 register |
| #define | reg7 register |
| #define | reg8 register |
| #define | reg9 register |
| #define | reg10 register |
| #define | reg11 register |
| #define | reg12 register |
| #define | reg13 register |
| #define | reg14 register |
| #define | reg15 register |
| #define | reg16 register |
| #define | dbug_volatile volatile |
| #define | SCALE_SEC 100 |
| #define | SCALE_USEC 10000 |
| #define | MY_HOW_OFTEN_TO_ALARM 2 |
| #define | MY_HOW_OFTEN_TO_WRITE 1000 |
| #define | set_timespec(ABSTIME, SEC) |
| #define | set_timespec_nsec(ABSTIME, NSEC) |
| #define | sint2korr(A) |
| #define | sint3korr(A) |
| #define | sint4korr(A) |
| #define | sint8korr(A) (longlong) uint8korr(A) |
| #define | uint2korr(A) |
| #define | uint3korr(A) |
| #define | uint4korr(A) |
| #define | uint5korr(A) |
| #define | uint6korr(A) |
| #define | uint8korr(A) |
| #define | int2store(T, A) |
| #define | int3store(T, A) |
| #define | int4store(T, A) |
| #define | int5store(T, A) |
| #define | int6store(T, A) |
| #define | int8store(T, A) |
| #define | float4get(V, M) memcpy_fixed((byte*) &V,(byte*) (M),sizeof(float)) |
| #define | float4store(V, M) memcpy_fixed((byte*) V,(byte*) (&M),sizeof(float)) |
| #define | float8get(V, M) doubleget((V),(M)) |
| #define | float8store(V, M) doublestore((V),(M)) |
| #define | int4net(A) |
| #define | ushortget(V, M) do { V = uint2korr(M); } while(0) |
| #define | shortget(V, M) do { V = sint2korr(M); } while(0) |
| #define | longget(V, M) do { V = sint4korr(M); } while(0) |
| #define | ulongget(V, M) do { V = uint4korr(M); } while(0) |
| #define | shortstore(T, V) int2store(T,V) |
| #define | longstore(T, V) int4store(T,V) |
| #define | floatstore(T, V) memcpy_fixed((byte*) (T),(byte*) (&V),sizeof(float)) |
| #define | floatget(V, M) memcpy_fixed((byte*) &V, (byte*) (M), sizeof(float)) |
| #define | doubleget(V, M) memcpy_fixed((byte*) &V,(byte*) (M),sizeof(double)) |
| #define | doublestore(T, V) memcpy_fixed((byte*) (T),(byte*) &V,sizeof(double)) |
| #define | longlongget(V, M) memcpy_fixed((byte*) &V,(byte*) (M),sizeof(ulonglong)) |
| #define | longlongstore(T, V) memcpy_fixed((byte*) (T),(byte*) &V,sizeof(ulonglong)) |
| #define | my_sprintf(buff, args) ((ulong) sprintf args, (ulong) strlen(buff)) |
| #define | thread_safe_increment(V, L) (V)++ |
| #define | thread_safe_add(V, C, L) (V)+=(C) |
| #define | thread_safe_sub(V, C, L) (V)-=(C) |
| #define | statistic_increment(V, L) (V)++ |
| #define | statistic_add(V, C, L) (V)+=(C) |
| #define | MYSQL_UNIVERSAL_CLIENT_CHARSET MYSQL_DEFAULT_CHARSET_NAME |
| #define | RTLD_NOW 1 |
| #define | dlerror() "" |
Typedefs | |
| typedef unsigned int | uint |
| typedef unsigned short | ushort |
| typedef int | File |
| typedef int | my_socket |
| typedef uint | puchar |
| typedef int | pbool |
| typedef int | pshort |
| typedef double | pfloat |
| typedef int(*) | qsort_cmp2 (void *, const void *, const void *) |
| typedef SOCKET_SIZE_TYPE | size_socket |
| typedef long long | my_ptrdiff_t |
| typedef unsigned long | my_size_t |
| typedef char * | gptr |
| typedef unsigned char | uchar |
| typedef signed char | int8 |
| typedef unsigned char | uint8 |
| typedef short | int16 |
| typedef unsigned short | uint16 |
| typedef unsigned long | ulong |
| typedef unsigned long | ulonglong |
| typedef long | longlong |
| typedef longlong | int64 |
| typedef ulonglong | uint64 |
| typedef unsigned long long | my_ulonglong |
| typedef unsigned long | my_off_t |
| typedef off_t | os_off_t |
| typedef uint8 | int7 |
| typedef short | int15 |
| typedef char * | my_string |
| typedef unsigned long | size_s |
| typedef int | myf |
| typedef char | byte |
| typedef char | my_bool |
| typedef char | bool |
Variables | |
| C_MODE_START typedef void(*) | sig_return () |
| C_MODE_END typedef int | pchar |
| C_MODE_START typedef int(*) | qsort_cmp (const void *, const void *) |
| #define __attribute__ | ( | A | ) |
Definition at line 554 of file my_global.h.
Definition at line 106 of file my_global.h.
| #define __EXTENSIONS__ 1 |
Definition at line 238 of file my_global.h.
| #define __STDC_EXT__ 1 |
Definition at line 240 of file my_global.h.
| #define _PC | ( | X | ) | X |
Definition at line 577 of file my_global.h.
| #define _STATIC_VARARGS | ( | X | ) | X |
Definition at line 576 of file my_global.h.
| #define _VARARGS | ( | X | ) | X |
Definition at line 575 of file my_global.h.
| #define ADD_TO_PTR | ( | ptr, | |||
| size, | |||||
| type | ) | (type) ((byte*) (ptr)+size) |
Definition at line 843 of file my_global.h.
Referenced by _mi_read_pack_info(), find_key_block(), insert_pointer_name(), Field_bit::move_field_offset(), and Field::move_field_offset().
Definition at line 840 of file my_global.h.
Definition at line 838 of file my_global.h.
Referenced by _checkchunk(), _mi_update_blob_record(), _mi_write_blob_record(), _myfree(), _mymalloc(), _myrealloc(), sp_head::add_used_tables_to_table_list(), alloc_root(), bitmap_init(), check_ptr(), create_ref_for_key(), create_tmp_table(), create_virtual_tmp_table(), Query_cache_result::data(), Query_cache_table::data(), free_root(), free_user_var(), Item_func_sp::func_name(), get_var_with_binlog(), get_variable(), handler::ha_open(), init_alloc_root(), init_file_buffer(), init_key_cache(), init_rr_cache(), mark_blocks_free(), mi_alloc_rec_buff(), multi_alloc_root(), my_dir(), my_dirend(), my_multi_malloc(), my_once_alloc(), mysql_ha_read(), Query_cache_query::query(), String::real_alloc(), String::realloc(), remove_dup_with_hash_index(), remove_duplicates(), reset_root_defaults(), sort_write_record(), TERMINATE(), tz_load_from_open_tables(), and update_hash().
| #define ALWAYS_INLINE |
Definition at line 207 of file my_global.h.
Definition at line 534 of file my_global.h.
Referenced by add_struct_to_map(), bind_fetch(), calc_length(), analyse::change_columns(), check_duplicates(), db_show_routine_status(), get_charset(), get_charset_number(), get_collation_number_internal(), get_hash_symbol(), init_available_charsets(), init_server_components(), insert_sql_functions(), insert_symbols(), Item_func_round::int_op(), lex_init(), my_double_round(), mysql_errno_to_sqlstate(), mysql_rename_view(), mysqld_help(), setup_procedure(), Field_double::store(), Field_float::store(), test_bind_date_conv(), test_bind_result_ext(), test_bind_result_ext1(), test_fetch_date(), test_fetch_null(), test_multi_statements(), test_prepare(), test_ps_conj_select(), test_ps_null_param(), and unireg_init().
| #define ASCII_BITS_USED 8 |
Definition at line 590 of file my_global.h.
| #define C_MODE_END |
Definition at line 63 of file my_global.h.
| #define C_MODE_START |
Definition at line 62 of file my_global.h.
Definition at line 967 of file my_global.h.
Definition at line 967 of file my_global.h.
Referenced by close_connections(), close_server_sock(), yaSSL::Socket::closeSocket(), echoserver_test(), handle_connections_sockets(), server_test(), and vio_close().
| #define CMP_NUM | ( | a, | |||
| b | ) | (((a) < (b)) ? -1 : ((a) == (b)) ? 0 : 1) |
Definition at line 526 of file my_global.h.
Referenced by _ftb_no_dupes_cmp(), FTB_WORD_cmp(), FTB_WORD_cmp_list(), and ha_key_cmp().
| #define DBL_MAX 1.79769313486231470e+308 |
Definition at line 797 of file my_global.h.
Referenced by best_access_path(), best_extension_by_limited_search(), choose_plan(), find_best(), get_best_disjunct_quick(), get_best_group_min_max(), get_best_ror_intersect(), greedy_search(), my_strtod(), print_plan(), Field_double::store(), and SQL_SELECT::test_quick_select().
| #define DBL_MIN 4.94065645841246544e-324 |
Definition at line 793 of file my_global.h.
| #define dbug_volatile volatile |
| #define dlerror | ( | ) | "" |
| #define DONT_REMEMBER_SIGNAL |
Definition at line 487 of file my_global.h.
Definition at line 1369 of file my_global.h.
Definition at line 1370 of file my_global.h.
| #define ENGLISH 1 |
Definition at line 470 of file my_global.h.
| #define FALSE (0) |
Definition at line 542 of file my_global.h.
Referenced by _db_keyword_(), _db_strict_keyword_(), _downheap(), About(), ac_trie_prepare(), acl_getroot_no_password(), field_decimal::add(), Item_func_group_concat::add(), Item_sum_count_distinct::add(), Item_sum_avg::add(), Item_sum_distinct::add(), QUICK_ROR_UNION_SELECT::add_info_string(), QUICK_ROR_INTERSECT_SELECT::add_info_string(), QUICK_INDEX_MERGE_SELECT::add_info_string(), QUICK_ROR_UNION_SELECT::add_keys_and_lengths(), QUICK_ROR_INTERSECT_SELECT::add_keys_and_lengths(), QUICK_INDEX_MERGE_SELECT::add_keys_and_lengths(), Abstract_option_cmd::add_option(), QUICK_GROUP_MIN_MAX_SELECT::add_range(), add_ref_to_table_cond(), add_used_routine(), sp_head::add_used_tables_to_table_list(), User_map::add_user(), agg_item_charsets(), agg_item_collations(), alloc_group_fields(), alloc_query(), analyse_nodegroup_map(), String::append(), String::append_with_prefill(), archive_db_init(), field_decimal::avg(), Item_param::basic_const_item(), binlog_commit(), binlog_rollback(), binlog_savepoint_rollback(), binlog_savepoint_set(), bitmap_is_clear_all(), bitmap_is_set_all(), btr_cur_compress_if_useful(), btr_cur_del_unmark_for_ibuf(), btr_cur_insert_if_possible(), btr_cur_mark_dtuple_inherited_extern(), btr_cur_mark_extern_inherited_fields(), btr_cur_optimistic_insert(), btr_cur_optimistic_update(), btr_cur_pessimistic_delete(), btr_cur_pessimistic_update(), btr_estimate_n_rows_in_range(), btr_index_page_validate(), btr_index_rec_validate(), btr_node_ptr_delete(), btr_page_get_father_for_rec(), btr_page_get_split_rec_to_left(), btr_page_get_split_rec_to_right(), btr_page_insert_fits(), btr_page_reorganize(), btr_pcur_move_to_prev(), btr_pcur_restore_position(), btr_push_update_extern_fields(), btr_search_check_guess(), btr_search_drop_page_hash_index(), btr_search_guess_on_hash(), btr_search_info_create(), btr_search_update_block_hash_info(), btr_search_update_hash_on_insert(), btr_search_validate(), btr_validate_level(), btr_validate_tree(), buf_block_init(), buf_flush_batch(), buf_flush_ready_for_flush(), buf_flush_ready_for_replace(), buf_flush_try_page(), buf_flush_write_block_low(), buf_flush_write_complete(), buf_LRU_buf_pool_running_out(), buf_LRU_get_free_block(), buf_LRU_invalidate_tablespace(), buf_LRU_make_block_young(), buf_LRU_old_adjust_len(), buf_LRU_remove_block(), buf_LRU_search_and_free_block(), buf_page_create(), buf_page_get_gen(), buf_page_get_known_nowait(), buf_page_init(), buf_page_init_for_backup_restore(), buf_page_io_complete(), buf_page_is_corrupted(), buf_page_optimistic_get_func(), buf_page_peek(), buf_page_peek_if_search_hashed(), buf_page_reset_file_page_was_freed(), buf_pool_check_no_pending_io(), buf_pool_init(), buf_read_ibuf_merge_pages(), buf_read_recv_pages(), buf_reset_check_index_page_at_flush(), handler::bulk_update_row(), Field::can_be_compared_as_longlong(), Item_func_group_concat::change_context_processor(), Item_func_sp::change_context_processor(), Item_ident::change_context_processor(), change_group_ref(), change_password(), JOIN::change_result(), change_security_context(), Table_triggers_list::change_table_name_in_triggers(), change_to_use_tmp_fields(), ha_archive::check(), Item_func_set_user_var::check(), check_access(), check_column_grant_in_table_ref(), check_date(), check_duplicate_names(), check_engine(), check_equality(), check_fields(), check_group_min_max_predicates(), ha_myisam::check_if_locking_is_allowed(), handler::check_if_log_table_locking_is_allowed(), check_insert_fields(), check_key_in_view(), Event_scheduler::check_n_suspend_if_needed(), Event_scheduler::check_n_wait_for_non_empty_queue(), Item_is_not_null_test::check_partition_func_processor(), Item_int_with_ref::check_partition_func_processor(), Item_return_int::check_partition_func_processor(), Item_datetime::check_partition_func_processor(), Item_static_string_func::check_partition_func_processor(), Item_static_float_func::check_partition_func_processor(), Item_null_result::check_partition_func_processor(), Item::check_partition_func_processor(), check_prepared_statement(), check_quick_keys(), check_quick_select(), check_reserved_words(), check_routine_access(), check_some_routine_access(), Item_sum::check_sum_func(), check_table_name(), check_that_all_fields_are_given_values(), check_user(), check_view_insertability(), Item_sum_count_distinct::cleanup(), Item_func_like::cleanup(), Log_to_csv_event_handler::cleanup(), Item::cleanup_processor(), Item_func_group_concat::clear(), Log_to_csv_event_handler::close_log_table(), close_temporary_tables(), closecon_handlerton(), Cached_item_decimal::cmp(), Cached_item_int::cmp(), Cached_item_real::cmp(), cmp_dtuple_is_prefix_of_rec(), cmp_types_are_equal(), Item_field::collect_item_field_processor(), compare_record(), Instance_map::complete_initialization(), Event_timed::compute_next_execution_time(), Item_func_trig_cond::const_item(), Field::convert_decimal2longlong(), Item_param::convert_str_value(), String::copy(), String::copy_aligned(), copy_data_between_tables(), ha_tina::create(), Event_scheduler::create_event(), handler::create_handler_files(), in_decimal::create_item(), create_shutdown_thread(), create_string(), create_sys_files(), create_table_precheck(), db_create_event(), db_create_routine(), db_find_routine(), db_show_routine_status(), deactivate_ddl_log_entry(), LOGGER::deactivate_log_handler(), Prepared_statement::deallocate(), decimal_round(), delete_precheck(), dfield_check_typed_no_assert(), dfield_data_is_binary_equal(), dfield_print_also_hex(), dict_accept(), dict_build_table_def_step(), dict_check_tablespaces_and_store_max_id(), dict_col_name_is_reserved(), dict_create_foreign_constraints_low(), dict_create_or_check_foreign_constraint_tables(), dict_create_sys_fields_tuple(), dict_foreign_add_to_cache(), dict_foreign_error_report(), dict_foreign_eval_sql(), dict_foreign_parse_drop_constraints(), dict_hdr_create(), dict_index_add_to_cache(), dict_index_find_cols(), dict_index_name_print(), dict_load_indexes(), dict_load_table(), dict_mem_index_create(), dict_mem_table_create(), dict_print_info_on_foreign_key_in_create_format(), dict_print_info_on_foreign_keys(), dict_scan_col(), dict_scan_table_name(), dict_skip_word(), dict_table_add_to_cache(), dict_table_referenced_by_foreign_key(), dict_table_rename_in_cache(), dict_tables_have_same_db(), dict_update_statistics(), dispatch_command(), display_table_locks(), do_block(), do_command(), do_copy_next_number(), do_echo(), do_test(), Event_scheduler::drop_event(), dropdb_handlerton(), dtuple_check_typed_no_assert(), dtuple_convert_big_rec(), dtuple_datas_are_ordering_equal(), dtype_is_binary_string_type(), dtype_is_non_binary_string_type(), dtype_is_string_type(), dump_leaf_key(), dump_triggers_for_table(), dyn_string_cmp(), dynstr_append_mem(), dynstr_realloc(), dynstr_set(), handler::end_bulk_delete(), ha_archive::end_bulk_insert(), Item_direct_view_ref::eq(), Item_hex_string::eq(), Item_float::eq(), Item_int::eq(), Item_param::eq(), LOGGER::error_log_print(), escape_quotes_for_mysql(), escape_string_for_mysql(), eval_cmp(), eval_const_cond(), eval_notfound(), event_worker_thread(), JOIN::exec(), handler::exec_bulk_update(), NdbEventOperationImpl::execSUB_TABLE_DATA(), sp_instr_copen::execute(), sp_instr_stmt::execute(), sp_head::execute(), execute_ddl_log_action(), execute_ddl_log_entry(), execute_ddl_log_recovery(), sp_head::execute_function(), sp_head::execute_procedure(), Event_scheduler::execute_top(), sp_head::execute_trigger(), exts_handlerton(), fil_addr_is_null(), fil_check_adress_in_tablespace(), fil_create_directory_for_tablename(), fil_create_new_single_table_tablespace(), fil_delete_tablespace(), fil_extend_space_to_desired_size(), fil_flush(), fil_get_space_id_for_table(), fil_inc_pending_ibuf_merges(), fil_load_single_table_tablespace(), fil_load_single_table_tablespaces(), fil_mutex_enter_and_prepare_for_io(), fil_node_close_file(), fil_node_create(), fil_node_free(), fil_node_open_file(), fil_node_prepare_for_io(), fil_op_log_parse_or_replay(), fil_open_single_table_tablespace(), fil_rename_tablespace(), fil_rename_tablespace_in_mem(), fil_reset_too_high_lsns(), fil_space_create(), fil_space_for_table_exists_in_mem(), fil_space_free(), fil_space_is_flushed(), fil_space_reserve_free_extents(), fil_tablespace_deleted_or_being_deleted_in_mem(), fil_tablespace_exists_in_mem(), fil_try_to_close_file_in_LRU(), String::fill(), fill_defined_view_parts(), sp_head::fill_field_definition(), st_table::fill_item_list(), fill_used_fields_bitmap(), Item_func_sp::find_and_check_access(), sp_pcontext::find_cursor(), sp_rcontext::find_handler(), sp_pcontext::find_handler(), find_item_equal(), Item_field::find_item_in_field_list_processor(), find_item_in_list(), find_order_in_list(), Item_sum_unique_users::fix_fields(), Item_func_convert_tz::fix_fields(), Item_func_group_concat::fix_fields(), Item_sum_hybrid::fix_fields(), Item_sum_num::fix_fields(), Item_row::fix_fields(), Item_user_var_as_out_param::fix_fields(), Item_func_set_user_var::fix_fields(), Item_func_rand::fix_fields(), Item_func_connection_id::fix_fields(), Item_func::fix_fields(), Item_func_like::fix_fields(), Item_cond::fix_fields(), Item_in_optimizer::fix_fields(), Item_trigger_field::fix_fields(), Item_insert_value::fix_fields(), Item_default_value::fix_fields(), Item_ref::fix_fields(), Item_field::fix_fields(), Item::fix_fields(), Item_name_const::fix_fields(), Item_sp_variable::fix_fields(), Item_field::fix_outer_field(), flush_handlerton(), LOGGER::flush_logs(), foreign_key_prefix(), free_share(), ha_archive::free_share(), fseg_alloc_free_page(), fseg_alloc_free_page_low(), fseg_create(), fseg_free_extent(), fseg_free_step(), fseg_free_step_not_header(), fseg_mark_page_used(), fsp_alloc_free_extent(), fsp_alloc_free_page(), fsp_alloc_seg_inode_page(), fsp_fill_free_list(), fsp_header_init(), fsp_init_file_page_low(), fsp_reserve_free_extents(), fsp_try_extend_data_file(), ft_simple_get_word(), ftb_check_phrase_internal(), LOGGER::general_log_print(), get_best_covering_ror_intersect(), get_best_disjunct_quick(), get_best_group_min_max(), get_best_ror_intersect(), get_constant_key_infix(), handler::get_error_message(), get_file_options_ulllist(), get_free_ddl_log_entry(), get_mm_tree(), get_mqh(), QUICK_RANGE_SELECT::get_next(), QUICK_ROR_UNION_SELECT::get_next(), get_options(), Field_iterator_table_ref::get_or_create_column_ref(), get_schema_partitions_record(), get_share(), ha_archive::get_share(), get_user_name(), get_view_structure(), NTService::GetOS(), NTService::got_service_option(), grant_free(), grant_load(), Guardian_thread::Guardian_thread(), ha_check_storage_engine_flag(), ha_create(), ha_create_table_from_engine(), ha_flush_logs(), ha_insert_for_fold(), ha_recover(), ha_storage_engine_is_enabled(), ha_validate(), delayed_insert::handle_inserts(), handle_manager(), Field_blob::has_charset(), Field_varstring::has_charset(), Field_string::has_charset(), Field::has_charset(), hash_create(), hostname_requires_resolving(), ib_list_create(), ibuf_bitmap_page_set_bits(), ibuf_build_entry_from_ibuf_rec(), ibuf_contract_after_insert(), ibuf_contract_ext(), ibuf_data_enough_free_for_insert(), ibuf_data_sizes_update(), ibuf_data_too_much_free(), ibuf_delete_rec(), ibuf_enter(), ibuf_exit(), ibuf_insert(), ibuf_insert_low(), ibuf_is_empty(), ibuf_merge_or_delete_for_page(), ibuf_page(), ibuf_page_low(), ibuf_rec_get_volume(), ibuf_remove_free_page(), ibuf_update_max_tablespace_id(), include_table(), JOIN::init(), QUICK_ROR_UNION_SELECT::init(), Item_func_user::init(), Name_resolution_context::init(), create_field::init(), Event_scheduler::init(), Named_value_arr::init(), Log_to_file_event_handler::init(), Abstract_option_cmd::init(), init_available_charsets(), init_compiled_charsets(), init_ddl_log(), init_dynamic_array(), init_dynamic_string(), Event_timed::init_ends(), init_errmessage(), Event_timed::init_execute_at(), init_param_array(), QUICK_ROR_INTERSECT_SELECT::init_ror_merged_scan(), Event_timed::init_starts(), Item_sum::init_sum_func_check(), init_tmpdir(), sp_rcontext::init_var_items(), sp_rcontext::init_var_table(), InitInstance(), InList(), innobase_start_or_create_for_mysql(), insert_dynamic(), insert_fields(), insert_precheck(), insert_view_fields(), NTService::Install(), WindowsService::Install(), is_binary_compatible(), subselect_engine::is_executed(), handler::is_fatal_error(), ha_partition::is_fatal_error(), ha_ndbcluster::is_fatal_error(), handler::is_fk_defined_on_table_or_index(), is_key_scan_ror(), Instance::is_name_valid(), Instance_options::is_option_im_specific(), SEL_ARG::is_singlepoint(), partition_info::is_sub_partitioned(), NTService::is_super_user(), Instance_map::is_there_active_instance(), WindowsService::IsInstalled(), NTService::IsService(), Item_func_group_concat::Item_func_group_concat(), Item_type_holder::join_types(), lex_start(), Event_scheduler::load_events_from_db(), lock_check_trx_id_sanity(), lock_clust_rec_read_check_and_lock(), lock_deadlock_occurs(), lock_deadlock_recursive(), lock_get_wait(), lock_has_to_wait(), lock_is_on_table(), lock_is_table_exclusive(), lock_mode_compatible(), lock_mode_stronger_or_eq(), lock_print_info_all_transactions(), lock_rec_add_to_queue(), lock_rec_enqueue_waiting(), lock_rec_expl_exist_on_page(), lock_rec_get_gap(), lock_rec_get_insert_intention(), lock_rec_get_next(), lock_rec_get_nth_bit(), lock_rec_get_rec_not_gap(), lock_rec_has_to_wait(), lock_rec_has_to_wait_in_queue(), lock_rec_insert_check_and_lock(), lock_rec_lock_fast(), lock_rec_reset_nth_bit(), lock_sec_rec_cons_read_sees(), lock_sec_rec_read_check_and_lock(), lock_table_enqueue_waiting(), lock_table_has_to_wait_in_queue(), lock_table_other_has_incompatible(), lock_table_queue_validate(), lock_tables(), log_block_checksum_is_ok_or_old_format(), log_calc_max_ages(), log_check_log_recs(), log_checkpoint(), log_checkpoint_margin(), Log_to_csv_event_handler::log_error(), log_flush_margin(), log_fsp_current_free_limit_set_and_checkpoint(), Log_to_csv_event_handler::log_general(), log_group_checkpoint(), log_group_read_log_seg(), log_group_write_buf(), log_init(), log_make_checkpoint_at(), log_peek_lsn(), log_preflush_pool_modified_pages(), Log_to_csv_event_handler::log_slow(), log_write_up_to(), main(), make_join_statistics(), TRP_ROR_UNION::make_quick(), TRP_ROR_INTERSECT::make_quick(), TRP_INDEX_MERGE::make_quick(), make_ror_scan(), make_simple_join(), JOIN::make_sum_func_list(), Item_sum_count_distinct::make_unique(), make_unique_view_field_name(), manager(), BackupRestore::map_in_frm(), BackupRestore::map_nodegroups(), mark_common_columns(), mem_area_alloc(), mem_area_free(), mem_heap_printf_low(), mem_pool_create(), mem_pool_fill_free_list(), mi_test_if_sort_rep(), mlog_parse_index(), modify_defaults_file(), multi_delete_precheck(), my_coll_init_8bit_bin(), my_coll_init_simple(), my_net_init(), my_parse_charset_xml(), my_read_charset_file(), my_tz_check_n_skip_implicit_tables(), mysql_admin_table(), mysql_alter_table(), mysql_alter_tablespace(), mysql_change_db(), mysql_checksum_table(), mysql_copy_create_list(), mysql_copy_key_list(), mysql_create_like_table(), mysql_create_or_drop_trigger(), mysql_create_table_internal(), mysql_create_view(), mysql_delete(), mysql_derived_filling(), mysql_derived_prepare(), mysql_discard_or_import_tablespace(), mysql_do(), mysql_drop_view(), mysql_execute_command(), mysql_grant(), mysql_ha_close(), mysql_ha_flush(), mysql_ha_open(), mysql_handle_derived(), mysql_insert(), mysql_insert_select_prepare(), mysql_install_plugin(), mysql_load(), mysql_lock_abort_for_thread(), mysql_lock_tables(), mysql_make_view(), mysql_manager_connect(), mysql_manager_submit(), mysql_multi_delete_prepare(), mysql_multi_update(), mysql_multi_update_prepare(), mysql_prepare_delete(), mysql_prepare_insert(), mysql_prepare_insert_check_table(), mysql_prepare_update(), mysql_rename_tables(), mysql_rename_view(), mysql_rm_table(), mysql_routine_grant(), mysql_sql_stmt_execute(), mysql_ssl_set(), mysql_stmt_attr_get(), mysql_stmt_attr_set(), mysql_stmt_execute(), mysql_stmt_prepare(), mysql_table_grant(), mysql_test_create_table(), mysql_test_insert(), mysql_test_multidelete(), mysql_test_set_fields(), mysql_truncate(), mysql_uninstall_plugin(), mysql_wait_completed_table(), mysql_write_frm(), mysql_xa_recover(), mysqld_help(), mysqld_show_authors(), mysqld_show_column_types(), mysqld_show_contributors(), mysqld_show_create(), mysqld_show_create_db(), mysqld_show_privileges(), mysqld_show_storage_engines(), mysqld_show_warnings(), Natural_join_column::Natural_join_column(), String::needs_conversion(), Item_func_nop_all::neg_transformer(), net_clear(), network_init(), QUICK_GROUP_MIN_MAX_SELECT::next_min_in_range(), Item_sum_hybrid::no_rows_in_result(), subselect_union_engine::no_tables(), NTService::NTService(), MYSQL_BIN_LOG::open_index_file(), Log_to_csv_event_handler::open_log_table(), open_or_create_data_files(), open_or_create_log_file(), open_table_from_share(), open_temporary_table(), open_unireg_entry(), opt_check_exp_determined_before(), opt_classify_cols(), opt_clust_access(), opt_is_arg(), opt_search_plan_for_table(), opt_sum_query(), ha_archive::optimize(), os_aio(), os_aio_array_create(), os_aio_array_free_slot(), os_aio_array_reserve_slot(), os_aio_simulated_wake_handler_threads(), os_awe_allocate_physical_mem(), os_awe_enable_lock_pages_in_mem(), os_awe_map_physical_mem_to_window(), os_event_create(), os_event_reset(), os_file_close(), os_file_close_no_error_handling(), os_file_create(), os_file_create_directory(), os_file_create_simple(), os_file_create_simple_no_error_handling(), os_file_create_subdirs_if_needed(), os_file_delete(), os_file_delete_if_exists(), os_file_flush(), os_file_get_size(), os_file_get_status(), os_file_handle_error(), os_file_handle_error_no_exit(), os_file_read(), os_file_read_no_error_handling(), os_file_rename(), os_file_set_size(), os_file_status(), os_file_write(), os_mutex_create(), os_process_set_priority_boost(), os_sync_free(), os_thread_eq(), page_dir_find_owner_slot(), page_rec_validate(), page_simple_validate(), page_validate(), panic_handlerton(), pars_check_aggregate(), pars_order_by(), pars_select_statement(), pars_update_statement(), pars_variable_declaration(), Unset_option::parse_args(), Set_option::parse_args(), Create_instance::parse_args(), parse_option_value(), plan_reset_cursor(), plugin_add(), plugin_foreach(), plugin_is_ready(), Sensitive_cursor::post_open(), st_table_list::prep_check_option(), JOIN::prepare(), Prepared_statement::prepare(), st_table_list::prepare_check_option(), prepare_for_repair(), st_table_list::prepare_security(), prepare_select_for_name(), st_table_list::prepare_view_securety_context(), st_table_list::prepare_where(), handler::primary_key_is_clustered(), handler::print_error(), print_table_data(), Set_option::process_option(), Table_triggers_list::process_triggers(), Handle_old_incorrect_trigger_table_hook::process_unknown_string(), Handle_old_incorrect_sql_modes_hook::process_unknown_string(), File_parser_dummy_hook::process_unknown_string(), NdbDictionaryImpl::putTable(), que_fork_all_thrs_in_state(), que_graph_try_free(), que_thr_create(), que_thr_dec_refer_count(), que_thr_stop(), que_thr_stop_for_mysql(), que_thr_stop_for_mysql_no_error(), QUICK_RANGE_SELECT::QUICK_RANGE_SELECT(), read_cursor_view_create_for_mysql(), read_ddl_log_entry(), read_ddl_log_file_entry(), read_ddl_log_header(), read_escaped_string(), QUICK_INDEX_MERGE_SELECT::read_keys_and_merge(), read_view_oldest_copy_or_open_new(), read_view_open_now(), String::real_alloc(), String::realloc(), rec_convert_dtuple_to_rec_old(), rec_print_old(), rec_validate(), rec_validate_old(), Events::reconstruct_interval_expression(), recv_apply_hashed_log_recs(), recv_apply_log_recs_for_backup(), recv_check_cp_is_consistent(), recv_group_scan_log_recs(), recv_parse_log_recs(), recv_parse_or_apply_log_rec_body(), recv_read_cp_info_for_backup(), recv_recover_page(), recv_recovery_from_checkpoint_finish(), recv_recovery_from_checkpoint_start(), recv_scan_log_recs(), recv_sys_add_to_parsing_buf(), recv_sys_init(), Item_sum::register_sum_func(), st_table_list::reinit_before_use(), reinit_stmt_before_use(), release_temporary_latches(), NTService::Remove(), WindowsService::Remove(), remove_eq_conds(), remove_nonrange_trees(), User_map::remove_user(), Log_to_csv_event_handler::reopen_log_table(), reopen_name_locked_table(), ha_tina::repair(), ha_archive::repair(), String::replace(), replace_db_table(), replace_routine_table(), replace_table_table(), require_quotes(), String::reserve(), QUICK_RANGE_SELECT::reset(), QUICK_ROR_UNION_SELECT::reset(), sp_head::reset_lex(), Item_maxmin_subselect::reset_value_registration(), Name_resolution_context::resolve_in_table_list_only(), resolve_ref_in_select_and_group(), Item::result_as_longlong(), NTService::ResumeService(), return_zero_rows(), ha_tina::rnd_end(), ha_archive::rnd_init(), roll_node_create(), JOIN::rollup_init(), ror_intersect_add(), ror_intersect_init(), row_add_table_to_background_drop_list(), row_build_row_ref_in_tuple(), row_create_index_for_mysql(), row_create_prebuilt(), row_create_table_for_mysql(), row_create_update_node_for_mysql(), row_delete_constraint_low(), row_discard_tablespace_for_mysql(), row_drop_table_for_mysql(), row_drop_table_for_mysql_in_background(), row_import_tablespace_for_mysql(), row_ins_cascade_ancestor_updates_table(), row_ins_cascade_calc_update_vec(), row_ins_check_foreign_constraint(), row_ins_check_foreign_constraints(), row_ins_dupl_error_with_rec(), row_ins_foreign_check_on_constraint(), row_ins_foreign_report_add_err(), row_ins_foreign_report_err(), row_ins_set_detailed(), row_insert_for_mysql(), row_mysql_handle_errors(), row_mysql_is_system_table(), row_purge(), row_purge_parse_undo_rec(), row_purge_remove_clust_if_poss_low(), row_purge_remove_sec_if_poss_low(), row_purge_upd_exist_or_extern(), row_rename_table_for_mysql(), row_scan_and_check_index(), row_search_check_if_query_cache_permitted(), row_search_for_mysql(), row_search_index_entry(), row_search_on_row_ref(), row_sel(), row_sel_convert_mysql_key_to_innobase(), row_sel_open_pcur(), row_sel_restore_pcur_pos(), row_sel_sec_rec_is_for_clust_rec(), row_sel_test_end_conds(), row_sel_test_other_conds(), row_table_add_foreign_constraints(), row_table_got_default_clust_index(), row_truncate_table_for_mysql(), row_undo(), row_undo_ins(), row_undo_ins_remove_clust_rec(), row_undo_ins_remove_sec_low(), row_undo_mod(), row_undo_mod_del_mark_or_remove_sec_low(), row_undo_mod_del_unmark_sec_and_undo_update(), row_undo_mod_remove_clust_low(), row_undo_mod_undo_also_prev_vers(), row_undo_search_clust_to_pcur(), row_upd_build_sec_rec_difference_binary(), row_upd_changes_field_size_or_external(), row_upd_changes_some_index_ord_field_binary(), row_upd_check_references_constraints(), row_upd_index_is_referenced(), row_vers_must_preserve_del_marked(), row_vers_old_has_index_entry(), Event_scheduler::run(), run_query(), rw_lock_create_func(), rw_lock_is_locked(), rw_lock_x_lock_low(), safe_update_on_fly(), Ndb_item::save_in_field(), BackupRestore::search_replace(), NTService::SeekStatus(), sel_node_create(), sel_reset_aggregate_vals(), sel_restore_position_for_mysql(), sel_trees_can_be_ored(), Select_fetch_into_spvars::send_data(), Select_fetch_protocol_prep::send_eof(), Select_fetch_into_spvars::send_eof(), Select_materialize::send_fields(), NTService::ServiceMain(), sess_try_close(), String::set(), sp_rcontext::set_case_expr(), set_dynamic(), set_field_to_null_with_conversions(), st_table_list::set_insert_values(), String::set_int(), Item_param::set_longdata(), set_new_item_local_context(), String::set_or_copy_aligned(), String::set_real(), set_routine_security_ctx(), Item_param::set_str(), set_user(), Item_user_var_as_out_param::set_value(), Item_func_group_concat::setup(), Item_sum_count_distinct::setup(), setup_conds(), setup_natural_join_row_types(), setup_one_fetch_function(), setup_order(), setup_sum_funcs(), setup_tables_and_check_access(), setup_tmp_table_column_bitmaps(), st_table_list::setup_underlying(), show_status_array(), showstat_handlerton(), simplify_joins(), LOGGER::slow_log_print(), snapshot_handlerton(), Item_equal::sort(), sp_cache_routines_and_add_tables_aux(), sp_cache_routines_and_add_tables_for_triggers(), sp_cache_routines_and_add_tables_for_view(), sp_change_security_context(), sp_cond_check(), sp_drop_db_routines(), sp_eval_expr(), sp_exist_routines(), sp_grant_privileges(), sp_show_create_function(), sp_show_create_procedure(), sp_use_new_db(), sql_create_definition_file(), srv_conc_enter_innodb(), srv_conc_force_exit_innodb(), srv_error_monitor_thread(), srv_init(), srv_lock_timeout_and_monitor_thread(), srv_master_thread(), srv_parse_data_file_paths_and_sizes(), srv_parse_log_group_home_dirs(), srv_release_threads(), srv_suspend_mysql_thread(), srv_table_reserve_slot(), srv_table_reserve_slot_for_mysql(), Event_scheduler::start(), Instance::start(), MYSQL_BIN_LOG::start_union_events(), TransporterRegistry::startReceiving(), NTService::StartService(), stat_print(), field_decimal::std(), stmt_fetch_fetch_row(), Event_scheduler::stop_all_running_events(), MYSQL_BIN_LOG::stop_union_events(), NTService::StopService(), Field_set::store(), Field_bit::store(), Field_enum::store(), Field_str::store(), Field_datetime::store(), Field_newdate::store(), Field_year::store(), Field_time::store(), Field_timestamp::store(), store_create_info(), ha_archive::store_lock(), store_natural_using_join_columns(), store_top_level_join_columns(), Field::str_needs_quotes(), sub_select(), sub_select_cache(), subst_spvars(), sym_tab_add_bound_id(), sym_tab_add_id(), sync_arr_cell_can_wake_up(), sync_array_create(), sync_array_print_long_waits(), sync_array_reserve_cell(), sync_ddl_log(), sync_init(), sync_thread_levels_empty(), sync_thread_levels_empty_gen(), sync_thread_levels_g(), sync_thread_reset_level(), table_check_intact(), test_bind_nagative(), test_bug10760(), test_bug12243(), test_compare_operators(), test_count_bits_set(), test_derived(), test_flip_bit(), test_get_all_bits(), test_get_first_bit(), test_get_next_bit(), test_if_hard_path(), test_if_string_in_list(), TEST_join(), test_operators(), test_prefix(), SQL_SELECT::test_quick_select(), test_set_get_clear_bit(), test_tran_bdb(), test_tran_innodb(), test_union_param(), thr_local_create(), BackupRestore::translate_frm(), trie_search(), trx_commit_complete_for_mysql(), trx_commit_off_kernel(), trx_create(), trx_doublewrite_page_inside(), trx_end_signal_handling(), trx_in_trx_list(), trx_prepare_off_kernel(), trx_print(), trx_purge_add_update_undo_to_history(), trx_purge_arr_remove_info(), trx_purge_choose_next_log(), trx_purge_fetch_next_rec(), trx_purge_free_segment(), trx_purge_rseg_get_next_history_log(), trx_purge_sys_create(), trx_purge_truncate_if_arr_empty(), trx_purge_update_undo_must_exist(), trx_roll_pop_top_rec_of_trx(), trx_rollback_for_mysql(), trx_rollback_to_savepoint_for_mysql(), trx_search_latch_release_if_reserved(), trx_sig_is_compatible(), trx_sig_start_handle(), trx_undo_arr_create(), trx_undo_arr_remove_info(), trx_undo_arr_store_info(), trx_undo_free_page_in_rollback(), trx_undo_header_create(), trx_undo_insert_header_reuse(), trx_undo_mem_create(), trx_undo_mem_create_at_db_start(), trx_undo_mem_init_for_reuse(), trx_undo_rec_get_pars(), trx_undo_report_row_operation(), trx_undo_seg_free(), Field::type_can_have_key_part(), Event_scheduler::unlock_data(), upd_ext_vec_contains(), upd_node_create(), handler::update_auto_increment(), ut_test_malloc(), Item_field::val_bool_result(), Item_std_field::val_decimal(), Item_decimal_typecast::val_decimal(), Item_func_format::val_str(), Item_func_des_decrypt::val_str(), Item_func_numhybrid::val_str(), Item_cache_decimal::val_str(), Hybrid_type_traits_decimal::val_str(), Item::val_string_from_decimal(), verify_col_data(), view_store_create_info(), PollGuard::wait_for_input(), WinMain(), MYSQL_BIN_LOG::write(), MYSQL_QUERY_LOG::write(), write_bin_log(), Show_instances::write_data(), write_ddl_log_entry(), write_ddl_log_file_entry(), write_ddl_log_header(), write_escaped_string(), write_execute_ddl_log_entry(), write_execute_load_query_log_event(), write_parameter(), Muted_query_log_event::write_post_header_for_derived(), Query_log_event::write_post_header_for_derived(), xacommit_handlerton(), xarecover_handlerton(), xarollback_handlerton(), xdes_get_descriptor_with_space_hdr(), xdes_get_n_used(), xdes_is_free(), xdes_is_full(), xid_to_str(), and yyparse().
| #define FAR |
Definition at line 850 of file my_global.h.
Referenced by deflateCopy(), deflateInit2_(), get_crc_table(), inflate(), inflate_fast(), inflate_table(), inflateBack(), inflateBackInit_(), inflateCopy(), inflateEnd(), inflateGetHeader(), inflateInit2_(), inflatePrime(), inflateReset(), inflateSetDictionary(), inflateSync(), inflateSyncPoint(), and updatewindow().
| #define FILE_BINARY O_BINARY |
Definition at line 640 of file my_global.h.
Definition at line 1278 of file my_global.h.
Definition at line 1279 of file my_global.h.
| #define float8get | ( | V, | |||
| M | ) | doubleget((V),(M)) |
Definition at line 1303 of file my_global.h.
| #define float8store | ( | V, | |||
| M | ) | doublestore((V),(M)) |
Definition at line 1304 of file my_global.h.
Definition at line 1366 of file my_global.h.
Definition at line 1365 of file my_global.h.
| #define FLT_MAX ((float)3.40282346638528860e+38) |
Definition at line 798 of file my_global.h.
Referenced by field_str::get_opt_type(), and Field_float::store().
| #define FLT_MIN ((float)1.40129846432481707e-45) |
Definition at line 794 of file my_global.h.
| #define FN_CURLIB '.' |
Definition at line 682 of file my_global.h.
Referenced by cleanup_dirname(), create_temp_file(), find_file_in_path(), intern_filename(), main(), my_load_path(), mysql_init_variables(), pack_dirname(), and system_filename().
| #define FN_EXTCHAR '.' |
| #define FN_EXTLEN 20 |
Definition at line 678 of file my_global.h.
| #define FN_HEADLEN 253 |
Definition at line 677 of file my_global.h.
| #define FN_HOMELIB '~' |
Definition at line 681 of file my_global.h.
Referenced by cleanup_dirname(), my_load_path(), my_print_default_files(), pack_dirname(), search_default_file_with_ext(), test_if_hard_path(), and unpack_dirname().
| #define FN_LEN 256 |
Definition at line 676 of file my_global.h.
Referenced by fn_format(), get_all_tables(), write_ddl_log_entry(), write_ddl_log_header(), and write_execute_ddl_log_entry().
| #define FN_LIBCHAR '/' |
Definition at line 686 of file my_global.h.
| #define FN_PARENTDIR ".." |
Definition at line 683 of file my_global.h.
Referenced by cleanup_dirname(), intern_filename(), my_load_path(), and system_filename().
| #define FN_REFLEN 512 |
Definition at line 679 of file my_global.h.
Referenced by add_table_for_trigger(), alloc_table_share(), append_file_to_dir(), ha_myisam::backup(), build_table_filename(), Table_triggers_list::change_table_name_in_triggers(), Table_triggers_list::change_table_name_in_trignames(), change_to_newfile(), check_db_dir_existence(), check_if_ignore_table(), Table_triggers_list::check_n_load(), check_result(), check_struct_option(), cleanup_dirname(), com_edit(), com_pager(), com_source(), com_tee(), com_use(), compress(), convert_dirname(), convert_file(), ha_tina::create(), ha_archive::create(), create_file(), create_sys_files(), create_temp_file(), create_tmp_table(), Table_triggers_list::create_trigger(), dbConnect(), default_local_infile_init(), handler::delete_table(), do_connect(), do_sync_with_master2(), Table_triggers_list::drop_all_triggers(), drop_db(), Table_triggers_list::drop_trigger(), dump_all_tablespaces(), dump_progress(), dump_remote_log_entries(), dump_result_to_log_file(), dump_result_to_reject_file(), dump_table(), dyn_string_cmp(), examine_log(), execute_commands(), execute_ddl_log_action(), execute_ddl_log_recovery(), Instance_options::fill_mysqld_real_path(), find_files(), MYSQL_BIN_LOG::find_log_pos(), MYSQL_BIN_LOG::find_next_log(), find_uniq_filename(), fix_paths(), flush_error_log(), fn_ext(), fn_format(), fn_format_relative_to_data_home(), fn_same(), MYSQL_LOG::generate_name(), get_actual_table_name(), get_all_tables(), get_charset(), get_charset_by_csname(), get_charset_by_name(), get_charsets_dir(), get_file_name(), get_internal_charset(), get_one_option(), get_options(), get_share(), ha_archive::get_share(), get_table_structure(), ha_create_table(), ha_create_table_from_engine(), ha_delete_table(), ha_show_status(), handle_options(), ha_myisam::info(), init_available_charsets(), init_common_variables(), init_ddl_log(), init_server_components(), init_tee(), init_tmpdir(), intern_filename(), Instance_map::load(), load_db_opt_by_name(), Load_log_processor::load_old_format_file(), lock_table(), main(), make_default_log_name(), MYSQL_BIN_LOG::make_log_name(), map_file(), mi_create(), mi_delete_table(), mi_log(), mi_open(), mi_panic(), mi_rename(), my_create_with_symlink(), my_delete_with_symlink(), my_dir(), my_getwd(), my_load_path(), my_path(), my_print_default_files(), my_readlink(), my_realpath(), my_redel(), my_rename_with_symlink(), my_setwd(), myrg_create(), myrg_open(), mysql_admin_table(), mysql_alter_db(), mysql_alter_table(), mysql_create_db(), mysql_create_like_table(), mysql_create_table_internal(), mysql_drop_view(), mysql_init_character_set(), mysql_load(), mysql_print_status(), mysql_register_view(), mysql_rename_db(), mysql_rename_table(), mysql_rename_view(), mysql_rm_arc_files(), mysql_rm_db(), mysql_rm_known_files(), mysql_rm_table_part2(), mysql_rm_tmp_tables(), mysql_set_character_set(), mysql_table_grant(), mysql_truncate(), mysql_write_frm(), MYSQL_BIN_LOG::new_file_impl(), ha_myisammrg::open(), MYSQL_BIN_LOG::open(), MYSQL_LOG::open(), open_file(), open_new_frm(), MYSQL_QUERY_LOG::open_query_log(), MYSQL_QUERY_LOG::open_slow_log(), open_sql_file_for_table(), open_table(), open_table_def(), open_table_error(), ha_tina::open_update_temp_file_if_needed(), ha_archive::optimize(), pack_dirname(), plugin_dl_add(), prepare_for_repair(), prepare_for_restore(), quick_rm_table(), rea_create_table(), read_ddl_log_header(), ha_archive::read_meta_file(), read_server_arguments(), read_texts(), readfrm(), real_open_cached_file(), rename_file_ext(), rename_in_schema_file(), rename_tables(), reopen_closed_file(), ha_tina::repair(), ha_myisam::repair(), ha_myisam::restore(), rm_dir_w_symlink(), rm_trigger_file(), rm_trigname_file(), ha_tina::rnd_end(), Rotate_log_event::Rotate_log_event(), save_trigger_file(), search_default_file_with_ext(), split_file_name(), sql_create_definition_file(), str_to_file(), sys_check_log_path(), system_filename(), test_file_exists(), test_file_exists_res(), test_frm_bug(), test_if_case_insensitive(), unpack_dirname(), unpack_filename(), update_frm_version(), update_sys_var_str_path(), Item_load_file::val_str(), wait_pidfile(), Query_log_event::write(), ha_archive::write_meta_file(), write_to_table(), and writefrm().
| #define FN_ROOTDIR "/" |
Definition at line 687 of file my_global.h.
| #define HAVE_EXTERNAL_CLIENT |
Definition at line 24 of file my_global.h.
| #define HAVE_INLINE |
Definition at line 191 of file my_global.h.
| #define HAVE_REPLICATION |
Definition at line 23 of file my_global.h.
| #define HAVE_UINT |
Definition at line 521 of file my_global.h.
| #define HOT_DATA |
Definition at line 181 of file my_global.h.
| #define HOT_METHOD |
Definition at line 162 of file my_global.h.
| #define inline_test_1 | ( | X | ) | X ## 1 |
Definition at line 188 of file my_global.h.
| #define inline_test_2 | ( | X | ) | inline_test_1(X) |
Definition at line 189 of file my_global.h.
| #define INT16 | ( | v | ) | (int16) (v) |
Definition at line 991 of file my_global.h.
| #define int2store | ( | T, | |||
| A | ) |
| #define INT32 | ( | v | ) | (int32) (v) |
Definition at line 992 of file my_global.h.
| #define int3store | ( | T, | |||
| A | ) |
| #define int4net | ( | A | ) |
| #define int4store | ( | T, | |||
| A | ) |
| #define int5store | ( | T, | |||
| A | ) |
| #define int6store | ( | T, | |||
| A | ) |
| #define INT8 | ( | v | ) | (int8) (v) |
Definition at line 990 of file my_global.h.
| #define int8store | ( | T, | |||
| A | ) |
| #define INT_MAX16 0x7FFF |
Definition at line 785 of file my_global.h.
Referenced by fetch_long_with_conversion(), fetch_result_short(), fetch_string_with_conversion(), field_str::get_opt_type(), and Field_short::store().
| #define INT_MAX24 0x007FFFFF |
Definition at line 782 of file my_global.h.
Referenced by field_str::get_opt_type(), and Field_medium::store().
| #define INT_MAX32 0x7FFFFFFFL |
Definition at line 779 of file my_global.h.
Referenced by fetch_long_with_conversion(), fetch_result_int32(), fetch_string_with_conversion(), field_str::get_opt_type(), main(), mi_create(), mi_open(), my_strntod_8bit(), my_strntol_8bit(), Field_long::store(), test_strarg(), udiv(), urem(), and Item_func_substr::val_str().
| #define INT_MAX8 0x7F |
Definition at line 788 of file my_global.h.
Referenced by fetch_long_with_conversion(), fetch_result_tinyint(), and fetch_string_with_conversion().
| #define INT_MIN16 (~0x7FFF) |
Definition at line 784 of file my_global.h.
Referenced by fetch_long_with_conversion(), fetch_string_with_conversion(), field_str::get_opt_type(), and Field_short::store().
| #define INT_MIN24 (~0x007FFFFF) |
Definition at line 781 of file my_global.h.
Referenced by field_str::get_opt_type(), and Field_medium::store().
| #define INT_MIN32 (~0x7FFFFFFFL) |
Definition at line 778 of file my_global.h.
Referenced by fetch_long_with_conversion(), fetch_string_with_conversion(), field_str::get_opt_type(), my_strntol_8bit(), and Field_long::store().
| #define INT_MIN8 (~0x7F) |
Definition at line 787 of file my_global.h.
Referenced by fetch_long_with_conversion(), and fetch_string_with_conversion().
| #define INVALID_SOCKET -1 |
Definition at line 598 of file my_global.h.
Referenced by close_connections(), close_server_sock(), Listener_thread::create_tcp_socket(), Listener_thread::create_unix_socket(), handle_connections_sockets(), main(), mysql_init_variables(), mysql_manager_connect(), and network_init().
| #define IO_SIZE 4096 |
Definition at line 703 of file my_global.h.
Referenced by _mi_cmp_buffer(), _mi_write_keypage(), _my_b_read(), _my_b_seq_read(), _my_b_write(), add_line(), alloc_key_blocks(), batch_readline_init(), copy_up_file_and_fill(), create_frm(), dump_local_log_entries(), execute_ddl_log_recovery(), filecopy(), fill_buffer(), flush_error_log(), get_merge_buffers_cost(), get_sweep_read_cost(), ha_archive::ha_archive(), ha_tina::ha_tina(), handle_local_infile(), init_ddl_log(), init_io_cache(), load_db_opt(), main(), make_new_entry(), mi_open(), my_append(), my_b_append(), my_b_fill(), my_b_flush_io_cache(), my_b_seek(), my_chsize(), my_copy(), myrg_open(), net_realloc(), next_io_size(), MYSQL_LOG::open(), open_binlog(), MYSQL_BIN_LOG::open_index_file(), ha_archive::optimize(), READ_INFO::read_field(), reinit_io_cache(), handler::scan_time(), ha_myisammrg::scan_time(), write_ddl_log_file_entry(), and write_ddl_log_header().
| #define isinf | ( | X | ) | 0 |
| #define KEY_CACHE_BLOCK_SIZE (uint) 1024 |
Definition at line 720 of file my_global.h.
Referenced by examine_log(), main(), myisamchk_init(), and start_test().
| #define KEY_CACHE_SIZE (uint) (8*1024*1024-MALLOC_OVERHEAD) |
Definition at line 109 of file my_global.h.
Referenced by Dblqh::acckeyconf_load_diskpage_callback(), Ndbd_mem_manager::alloc_page(), Tup_fixsize_page::alloc_record(), Dbtup::alloc_var_rec(), Dbtup::alloc_var_rowid(), Lgman::cut_log_tail(), decimal_add(), decimal_cmp(), decimal_round(), decimal_sub(), do_div_mod(), Dbacc::execACCKEY_ORD(), Dblqh::execACCKEYCONF(), Dbacc::execACCMINUPDATE(), Dblqh::execNEXT_SCANCONF(), NdbEventBuffer::execSUB_GCP_COMPLETE_REP(), Event_scheduler::execute_top(), NdbObjectIdMap::expand(), find_bucket(), TransporterFacade::ThreadData::get(), Suma::get_buffer_ptr(), TransporterRegistry::get_free_buffer(), ArrayPool< T >::getConstPtr(), UnsafeArrayPool< T >::getConstPtrForce(), WOPool::getPtr(), RWPool::getPtr(), ArrayPool< T >::getPtr(), UnsafeArrayPool< T >::getPtrForce(), NdbEventBuffer::insertDataL(), Dbtup::nr_read_pk(), Dblqh::packLqhkeyreqLab(), Dblqh::prepareContinueAfterBlockedLab(), Query_log_event::Query_log_event(), Dbacc::readTablePk(), WOPool::release(), RWPool::release(), ArrayPool< T >::release(), WOPool::release_not_current(), remove_table_from_cache(), Dbtup::scanNext(), WOPool::seize(), RWPool::seize(), DLListImpl< P, T, U >::seize(), Suma::seize_page(), SLFifoListImpl< P, T, U >::seizeFirst(), DLFifoListImpl< P, T, U >::seizeFirst(), DLListImpl< P, T, U >::seizeId(), SLFifoListImpl< P, T, U >::seizeLast(), DLFifoListImpl< P, T, U >::seizeLast(), thd_increment_bytes_sent(), Dbtup::updateAttributes(), and MYSQL_BIN_LOG::write().
| #define LINT_INIT | ( | var | ) |
Definition at line 504 of file my_global.h.
Referenced by _create_index_by_sort(), _ft2_search(), _mi_bin_search(), _mi_find_last_pos(), _mi_pack_get_block_info(), _mi_prefix_search(), _mi_read_dynamic_record(), _mi_read_rnd_dynamic_record(), _mi_seq_search(), agg_item_charsets(), sys_var_character_set::check(), sys_var_collation::check(), chk_data_link(), chk_del(), CLI_MYSQL_REAL_CONNECT(), close_connections(), close_temporary_tables(), com_go(), com_server_help(), com_status(), create_func_cast(), create_header_files(), create_tmp_field_from_item(), d_search(), do_div_mod(), do_wait_for_slave_to_stop(), events_table_index_read_for_db(), sp_head::execute_function(), extract_date_time(), find_field_in_natural_join(), find_field_in_view(), Item_func_case::find_item(), find_item_in_list(), find_type(), findmust(), st_table_list::first_leaf_for_name_resolution(), Item_func_match::fix_fields(), get_all_tables(), get_interval_value(), get_key_scans_params(), get_one_option(), Field_iterator_table_ref::get_or_create_column_ref(), handle_connections_sockets(), handle_grant_struct(), handle_options(), hp_write_key(), init_username(), SEL_ARG::insert(), ip_to_hostname(), list_fields(), main(), make_field(), merge_buffers(), mi_alloc_rec_buff(), mi_create(), mi_open(), mi_update(), my_hash_insert(), myodbc_remove_escape(), myrg_open(), myrg_rkey(), mysql_alter_table(), mysql_change_db(), mysql_ha_read(), mysql_list_processes(), mysql_rm_table_part2(), mysql_show_grants(), MYSQLlex(), network_init(), p_ere(), pack_dirname(), parse_date_time_format(), prepare_tz_info(), process_all_tables_in_db(), read_huff_table(), read_line(), read_texts(), run_query_normal(), Item::send(), sp_head::show_create_function(), sp_head::show_create_procedure(), Field_decimal::store(), str_to_datetime(), str_to_time(), test_if_skip_sort_order(), SQL_SELECT::test_quick_select(), Item_func::tmp_table_field(), Item_func_set_user_var::update(), Event_scheduler::update_event(), Item_func_min_max::val_decimal(), Item_func_trim::val_str(), Item_func_rtrim::val_str(), Item_func_ltrim::val_str(), Item_func_min_max::val_str(), var_query_set(), and wait_if_global_read_lock().
Definition at line 999 of file my_global.h.
| #define longget | ( | V, | |||
| M | ) | do { V = sint4korr(M); } while(0) |
Definition at line 1360 of file my_global.h.
Referenced by Field_date::cmp(), Field_timestamp::cmp(), Field_long::cmp(), Field_timestamp::get_date(), Field_blob::get_length(), Field_timestamp::get_timestamp(), main(), set_param_int32(), Field_enum::val_int(), Field_date::val_int(), Field_timestamp::val_int(), Field_long::val_int(), Field_date::val_real(), Field_long::val_real(), and Field_timestamp::val_str().
Definition at line 1372 of file my_global.h.
Referenced by Field_datetime::cmp(), set_param_int64(), Field_enum::val_int(), and Field_datetime::val_int().
Definition at line 1373 of file my_global.h.
Referenced by fetch_float_with_conversion(), fetch_long_with_conversion(), fetch_result_int64(), fetch_string_with_conversion(), Field_datetime::store(), Field_datetime::store_time(), and Field_enum::store_type().
| #define longstore | ( | T, | |||
| V | ) | int4store(T,V) |
Definition at line 1363 of file my_global.h.
Referenced by fetch_float_with_conversion(), fetch_long_with_conversion(), fetch_result_int32(), fetch_string_with_conversion(), Field_timestamp::set_time(), Field_date::store(), Field_timestamp::store(), Field_long::store(), Field_blob::store_length(), and Field_enum::store_type().
| #define M_E 2.7182818284590452354 |
| #define M_LN2 0.69314718055994530942 |
Definition at line 816 of file my_global.h.
Referenced by get_best_covering_ror_intersect(), get_best_disjunct_quick(), get_merge_buffers_cost(), log2_n_fact(), and Item_func_log2::val_real().
| #define M_PI 3.14159265358979323846 |
Definition at line 810 of file my_global.h.
Referenced by create_func_degrees(), create_func_pi(), create_func_radians(), and log2_n_fact().
| #define MALLOC_OVERHEAD 8 |
Definition at line 711 of file my_global.h.
Referenced by init_dynamic_array(), and insert_pointer_name().
| #define MASTER 1 |
Definition at line 469 of file my_global.h.
| #define max | ( | a, | |||
| b | ) | ((a) > (b) ? (a) : (b)) |
Definition at line 515 of file my_global.h.
Referenced by _create_index_by_sort(), _db_dump_(), alloc_root(), calc_used_field_length(), analyse::change_columns(), check_quick_keys(), check_stack_overrun(), create_record(), Item_func_if::decimal_precision(), Item_func_ifnull::decimal_precision(), decimal_result_size(), decimal_round(), Dbtup::Disk_alloc_info::Disk_alloc_info(), display_length(), display_matches(), do_add(), do_div_mod(), do_sub(), Dbdih::execCREATE_FRAGMENTATION_REQ(), Dbtc::execDIGETPRIMCONF(), filesort(), find_longest_bitstream(), Item_func_export_set::fix_length_and_dec(), Item_func_round::fix_length_and_dec(), Item_func_div::fix_length_and_dec(), Item_func_if::fix_length_and_dec(), Item_func_ifnull::fix_length_and_dec(), freeze_size(), Properties::get(), get_best_group_min_max(), Suma::get_buffer_ptr(), get_ev_num_info(), getopt_ll(), handle_connections_sockets(), history_arg_extract(), Indent(), inflate_table(), init_block(), init_common_variables(), init_dynamic_array(), Item_type_holder::join_types(), mapSegment(), mi_alloc_rec_buff(), mi_repair_by_sort(), mi_repair_parallel(), my_net_local_init(), my_set_max_open_files(), mysqld_show_create(), optimize_keyuse(), pack_header(), NdbBlob::prepareColumn(), print_extent_page(), print_table_data(), READ_INFO::READ_INFO(), Lgman::read_undo_log(), Lgman::read_undo_pages(), recreate_table(), Buffer::reserve(), String::reserve(), Item_func_mod::result_precision(), Item_func_additive_op::result_precision(), QUICK_RANGE_SELECT::row_in_ranges(), Listener_thread::run(), runTest(), save_state_mrg(), yaSSL::SetErrorString(), MgmtSrvr::setEventReportingLevelImpl(), sp_head::show_create_function(), sp_head::show_create_procedure(), sp_head::show_routine_code(), Suma::start_resend(), Field_str::store(), str_to_datetime(), Item_func_like::turboBM_matches(), tz_load_from_open_tables(), Item_func_soundex::val_str(), ConfigInfo::verify(), User_var_log_event::write(), and Lgman::write_log_pages().
| #define min | ( | a, | |||
| b | ) | ((a) < (b) ? (a) : (b)) |
Definition at line 516 of file my_global.h.
Referenced by _db_dump_(), _mi_pack_get_block_info(), _mi_pack_key(), _mi_read_cache(), _my_b_seq_read(), _myrealloc(), field_decimal::avg(), best_access_path(), bincmp(), bitmap_intersect(), check_connection(), check_quick_select(), sys_var::check_set(), check_simple_select(), CLI_MYSQL_REAL_CONNECT(), cli_safe_read(), Cached_item_str::cmp(), Field_blob::cmp_binary(), compare_bin(), Arg_comparator::compare_binary_string(), copy_if_not_alloced(), cost_group_min_max(), Item_func::count_decimal_length(), create_tmp_table(), decimal2string(), Item_func_round::decimal_op(), Item_func_case::decimal_precision(), Item_func_if::decimal_precision(), Item_func_ifnull::decimal_precision(), Item::decimal_precision(), decimal_round(), do_div_mod(), do_test(), dump_local_log_entries(), yaSSL::EVP_BytesToKey(), extract_date_time(), fetch_float_with_conversion(), fetch_result_bin(), fetch_result_str(), fetch_string_with_conversion(), filecopy(), filesort(), fill_schema_processlist(), yaSSL::SSL::fillData(), find_set(), Item_func_date_format::fix_length_and_dec(), Item_sum_variance::fix_length_and_dec(), Item_sum_avg::fix_length_and_dec(), Item_sum_avg_distinct::fix_length_and_dec(), Item_func_export_set::fix_length_and_dec(), Item_func_round::fix_length_and_dec(), Hybrid_type_traits_decimal::fix_length_and_dec(), fn_format(), MYSQL_LOG::generate_name(), get_best_disjunct_quick(), Field_bit::get_key_image(), QUICK_RANGE_SELECT::get_next(), QUICK_RANGE_SELECT::get_next_prefix(), get_one_option(), get_sort(), ha_tina::get_write_pos(), ha_key_cmp(), inflate_table(), create_field::init(), init_common_variables(), Item_type_holder::join_types(), key_cmp_if_same(), key_copy(), key_restore(), key_unpack(), main(), mapSegment(), handler::max_key_length(), handler::max_key_part_length(), handler::max_key_parts(), handler::max_keys(), handler::max_record_length(), mi_extra(), mi_open(), my_long10_to_str_8bit(), my_longlong10_to_str_8bit(), my_process_stmt_result(), my_set_max_open_files(), my_strnncoll_8bit_bin(), my_strnncoll_binary(), my_strnncollsp_8bit_bin(), my_strnncollsp_simple(), my_strnxfrm_8bit_bin(), my_strnxfrm_bin(), my_vsnprintf(), my_well_formed_len_8bit(), mysqld_list_processes(), Ndb_getInAddr(), net_printf_error(), Field_bit::pack(), Field_string::pack(), pack_screens(), yaSSL::SSL::PeekData(), plugin_dl_add(), print_table_data(), yaSSL::Server::Read(), yaSSL::Client::Read(), Log_event::read_log_event(), read_to_buffer(), read_to_buffer_varlen(), ha_tina::repair(), Buffer::reserve(), QUICK_RANGE_SELECT::reset(), Item_func_div::result_precision(), Item_func_mul::result_precision(), Item_func_additive_op::result_precision(), QUICK_RANGE_SELECT::row_in_ranges(), runTest(), search_default_file_with_ext(), send_ok(), send_prep_stmt(), yaSSL::sendData(), set_max_open_files(), Item::set_name(), yaSSL::SSL_CTX::SetCipherList(), Item_func_group_concat::setup(), sql_strmake_with_convert(), yaSSL::SSL_peek(), yaSSL::SSL_read(), ha_myisam::start_bulk_insert(), Suma::start_resend(), field_decimal::std(), Field_blob::store(), Field_double::store(), Field_float::store(), Field_decimal::store(), stringcmp(), SQL_SELECT::test_quick_select(), Item_func_like::turboBM_matches(), update_dynamic_record(), Item_hex_string::val_int(), Item_func_substr::val_str(), ConfigInfo::verify(), vio_read_buff(), write_eof_packet(), and yaSSL::X509_NAME_oneline().
| #define MIN_ARRAY_SIZE 0 |
Definition at line 589 of file my_global.h.
Definition at line 837 of file my_global.h.
Referenced by _mi_write_part_record(), handle_local_infile(), init_tree(), sort_write_record(), and update_dynamic_record().
Definition at line 551 of file my_global.h.
| #define MY_FILEPOS_ERROR (~(my_off_t) 0) |
Definition at line 951 of file my_global.h.
Referenced by azseek(), my_b_fill(), my_b_flush_io_cache(), my_fseek(), and my_seek().
| #define MY_HOW_OFTEN_TO_ALARM 2 |
| #define MY_HOW_OFTEN_TO_WRITE 1000 |
Definition at line 1049 of file my_global.h.
| #define MY_NFILE 64 |
Definition at line 689 of file my_global.h.
Referenced by my_free_open_file_info(), and my_set_max_open_files().
Definition at line 738 of file my_global.h.
Definition at line 550 of file my_global.h.
Definition at line 1384 of file my_global.h.
Referenced by field_real::add(), bind_fetch(), change_password(), double2decimal(), handle_request_for_tables(), make_date_time(), my_date_to_str(), my_datetime_to_str(), my_time_to_str(), print_decimal(), Load_log_processor::process_first_event(), String::qs_append(), String::set(), Field::set_datetime_warning(), String::set_real(), Field_str::store(), Field_decimal::store(), Protocol_simple::store(), Protocol_simple::store_time(), test_insert(), test_long_data_str(), test_long_data_str1(), test_prepare(), test_simple_update(), test_update(), and var_set_errno().
| #define MYF | ( | v | ) | (myf) (v) |
Definition at line 993 of file my_global.h.
Referenced by _create_index_by_sort(), _mi_ck_write_btree(), _mi_cmp_buffer(), _mi_cmp_dynamic_unique(), _mi_cmp_static_record(), _mi_cmp_static_unique(), _mi_decrement_open_count(), _mi_delete_static_record(), _mi_ft_add(), _mi_ft_del(), _mi_ft_update(), _mi_get_block_info(), _mi_insert(), _mi_mark_file_changed(), _mi_pack_get_block_info(), _mi_read_cache(), _mi_read_dynamic_record(), _mi_read_pack_info(), _mi_read_pack_record(), _mi_read_rnd_dynamic_record(), _mi_read_rnd_pack_record(), _mi_read_rnd_static_record(), _mi_read_static_record(), _mi_readinfo(), _mi_update_static_record(), _mi_write_static_record(), _mi_writeinfo(), _my_b_read(), _my_b_seq_read(), _my_b_write(), _myisam_log(), _myisam_log_command(), _myisam_log_record(), _mymalloc(), ac_trie_prepare(), acl_free(), acl_reload(), add_collation(), add_field_to_list(), add_init_command(), add_table_for_trigger(), Rpl_filter::add_table_rule(), Rpl_filter::add_wild_table_rule(), DTCollation::aggregate(), alloc_dynamic(), alloc_key_blocks(), alloc_query_str(), alloc_root(), Named_value::alloc_str(), append_file_to_dir(), append_stmt_result(), az_open(), azflush(), azread(), azrewind(), azseek(), azwrite(), ha_myisam::backup(), batch_readline_command(), batch_readline_end(), batch_readline_init(), begin_trans(), binlog_close_connection(), bitmap_free(), bitmap_init(), Buffer::Buffer(), build_completion_hash(), build_insert_string(), build_query_string(), build_table_string(), cache_remove_open_tmp(), ha_tina::chain_append(), change_password(), change_security_context(), Table_triggers_list::change_table_name(), change_to_newfile(), ha_tina::check(), ha_archive::check(), sys_var_thd_storage_engine::check(), set_var::check(), sys_var_thd_lc_time_names::check(), sys_var_max_user_conn::check(), sys_var_thd_time_zone::check(), sys_var_character_set::check(), sys_var_collation::check(), sys_var_thd_date_time_format::check(), sys_var_str::check(), ha_myisam::check(), check_access(), check_change_password(), Item_singlerow_subselect::check_cols(), Item_row::check_cols(), Item_cache_row::check_cols(), Item::check_cols(), check_column_grant_in_table_ref(), check_completion_type(), check_connection(), check_duplicate_names(), check_engine(), sys_var::check_enum(), check_fields(), check_global_access(), check_grant(), check_grant_all_columns(), check_grant_column(), check_header(), ha_myisam::check_if_locking_is_allowed(), handler::check_if_log_table_locking_is_allowed(), check_insert_fields(), check_lock_and_start_stmt(), check_log_update(), check_max_delayed_threads(), Table_triggers_list::check_n_load(), check_prepared_statement(), check_pseudo_thread_id(), sys_var::check_set(), check_simple_select(), check_stack_overrun(), Item_sum::check_sum_func(), check_table_access(), check_tx_isolation(), chk_data_link(), chk_del(), chk_index_down(), chk_size(), clean_up(), cleanup(), cleanup_dirname(), st_relay_log_info::clear_tables_to_lock(), CLI_MYSQL_REAL_CONNECT(), cli_read_rows(), cli_stmt_execute(), cli_use_result(), ha_tina::close(), sp_cursor::close(), MYSQL_BIN_LOG::close(), MYSQL_LOG::close(), close_cached_file(), close_cons(), close_files(), close_temporary(), closefrm(), cmp_item_row::cmp(), com_charset(), com_connect(), com_edit(), com_prompt(), com_source(), com_use(), Event_timed::compile(), completion_hash_clean(), completion_hash_free(), completion_hash_init(), compress(), convert_file(), convert_pipe(), copy_data_between_tables(), copy_event_to_schema_table(), copy_up_file_and_fill(), ha_tina::create(), ha_heap::create(), create_check_file(), create_defaults_file(), Events::create_event(), create_file(), Create_file_log_event::Create_file_log_event(), create_frm(), create_func_cast(), create_header_files(), create_instance_in_file(), create_key_cache(), create_myisam_from_heap(), create_myisam_tmp_table(), create_pid_file(), create_sort_index(), create_sys_files(), create_temp_file(), create_tmp_table(), Table_triggers_list::create_trigger(), Load_log_processor::create_unique_file(), cs_alloc(), cs_copy_data(), date_time_format_copy(), db_create_event(), db_create_routine(), db_drop_event(), db_drop_events_from_table(), db_error(), DB_error(), db_error_with_table(), db_find_event(), db_update_event(), DBerror(), Prepared_statement::deallocate(), decimal_operation_results(), default_local_infile_end(), default_local_infile_init(), default_local_infile_read(), delayed_get_table(), ha_tina::delete_all_rows(), delete_dynamic(), delete_dynamic_record(), delete_queue(), handler::delete_table(), delete_tree(), delete_tree_element(), destroy(), Event_scheduler::destroy(), Load_log_processor::destroy(), dispatch_command(), do_connect(), do_flush(), do_select(), do_show_master_status(), do_test(), Table_triggers_list::drop_all_triggers(), drop_db(), Events::drop_event(), drop_locked_tables(), Table_triggers_list::drop_trigger(), dump_all_databases(), dump_all_tables_in_db(), dump_local_log_entries(), dump_remote_log_entries(), dump_routines_for_db(), dump_selected_tables(), dump_table(), dump_triggers_for_table(), dyn_string_cmp(), dynstr_append_mem(), dynstr_free(), dynstr_realloc(), dynstr_set(), end_active_trans(), end_file_buffer(), end_io_cache(), end_key_cache(), end_read_record(), end_tee(), end_trans(), end_unique_update(), end_update(), error_if_full_join(), eval_expr(), evex_fill_row(), examine_log(), sp_instr_set_case_expr::exec_core(), sp_instr_set::exec_core(), Prepared_statement::execute(), sp_instr_error::execute(), sp_head::execute(), Event_timed::execute(), execute_commands(), execute_ddl_log_action(), sp_head::execute_function(), CommandInterpreter::execute_impl(), sp_head::execute_procedure(), sp_head::execute_trigger(), CommandInterpreter::executeClusterLog(), CommandInterpreter::executeDumpState(), CommandInterpreter::executeError(), CommandInterpreter::executeLog(), CommandInterpreter::executeSet(), File_class::exists(), fakebigcodes(), Materialized_cursor::fetch(), Sensitive_cursor::fetch(), sp_cursor::fetch(), file_info_free(), filecopy(), filesort(), filesort_free_buffers(), fill_buffer(), fill_buffer_retaining(), fill_record(), find_all_keys(), Item_func_sp::find_and_check_access(), find_field_in_group_list(), find_field_in_tables(), find_files(), find_item_in_list(), find_key_block(), find_order_in_list(), find_prepared_statement(), find_sys_var(), find_uniq_filename(), Item_subselect::fix_fields(), Item_func_match::fix_fields(), Item_func_rand::fix_fields(), Item_func_like::fix_fields(), Item_in_optimizer::fix_fields(), Item_trigger_field::fix_fields(), Item_insert_value::fix_fields(), Item_default_value::fix_fields(), Item_ref::fix_fields(), Item_field::fix_fields(), Item_func_match::fix_index(), Item_xml_str_func::fix_length_and_dec(), Item_func_set_collation::fix_length_and_dec(), Item_func_sha::fix_length_and_dec(), Item_func_md5::fix_length_and_dec(), Item_field::fix_outer_field(), fix_paths(), MYSQL_BIN_LOG::flush_and_sync(), flush_buffer(), flush_cached_blocks(), flush_error_log(), flush_ft_buf(), flush_key_blocks_int(), fn_format(), Format_description_log_event::Format_description_log_event(), String::free(), free_buffer(), free_cache_entry(), free_counts_and_tree_and_queue(), free_dbopt(), free_defaults(), free_delayed_insert_blobs(), free_io_cache(), free_key_cache(), free_old_query(), free_plugin_mem(), free_pointer_array(), free_record(), free_replace(), free_replace_regex(), free_root(), free_rows(), free_sets(), free_share(), ha_archive::free_share(), Named_value::free_str(), Rpl_filter::free_string_array(), free_table_ent(), free_table_share(), Log_event::free_temp_buf(), free_tmp_table(), free_tmpdir(), free_used_memory(), free_user(), free_user_var(), freeze_size(), ft_boolean_close_search(), ft_free_stopwords(), ft_init_boolean_search(), ft_init_nlq_search(), ft_init_stopwords(), ft_nlq_close_search(), FT_STOPWORD_free(), ftparser_call_deinitializer(), get_addon_fields(), get_byte(), get_charset(), get_charset_by_csname(), get_charset_by_name(), get_charset_name(), get_charset_number(), get_collation_number(), get_current_db(), get_current_user(), get_file_options_ulllist(), get_form_pos(), get_free_ddl_log_entry(), get_key_map_from_key_list(), get_old_charset_by_name(), get_one_option(), get_options(), get_or_create_user_conn(), get_password(), Instance_options::get_pid(), get_pidfile(), get_replace(), get_replace_column(), get_replace_strings(), get_schema_tables_record(), get_share(), ha_archive::get_share(), get_system_var(), get_table_share_with_create(), get_table_structure(), get_topics_for_keyword(), get_tty_password(), Transparent_file::get_value(), get_variable(), get_view_structure(), get_word(), grant_free(), grant_reload(), ha_checktype(), ha_commit_one_phase(), ha_commit_trans(), ha_create_table(), ha_create_table_from_engine(), ha_finish_errors(), ha_init_errors(), ha_known_exts(), ha_prepare(), ha_recover(), ha_release_savepoint(), ha_rollback_to_savepoint(), ha_rollback_trans(), ha_savepoint(), handle_bootstrap(), handle_delayed_insert(), handle_grant_table(), delayed_insert::handle_inserts(), handle_local_infile(), handle_manager(), handle_request_for_tables(), Dbdict::handleTabInfo(), heap_open(), heap_rename(), st_table_list::hide_view_error(), hp_close(), hp_free(), hp_get_new_block(), Item_row::illegal_method_call(), Item_cache_row::illegal_method_call(), ha_archive::info(), create_field::init(), Guardian_thread::init(), init_alloc_root(), Transparent_file::init_buff(), Load_log_processor::init_by_cur_dir(), init_common_variables(), init_ddl_log(), init_dynamic_array(), init_dynamic_string(), init_file_buffer(), init_huff_count(), init_io_cache(), init_key_cache(), init_line_buffer(), init_line_buffer_from_string(), init_param_array(), init_queue(), init_replace(), init_replace_regex(), init_rr_cache(), init_server_components(), init_sets(), init_state_maps(), Item_sum::init_sum_func_check(), init_tee(), ha_tina::init_tina_writer(), init_tmpdir(), init_username(), init_var_hash(), initialize_buffer(), insert_fields(), insert_pointer_name(), insert_precheck(), insert_view_fields(), ip_to_hostname(), sp_head::is_not_allowed_in_function(), sys_var_thd_binlog_format::is_readonly(), sys_var::item(), Item_float::Item_float(), join_init_cache(), join_same_trees(), Item_type_holder::join_types(), key_cache_read(), key_cache_write(), lex_end(), set_var::light_check(), list_cons(), list_free(), User_map::load(), load_db_opt(), Event_scheduler::load_events_from_db(), Load_log_processor::load_old_format_file(), lock_db_free_element(), lock_db_insert(), lock_file(), lock_table_name(), log(), Log_to_csv_event_handler::Log_to_csv_event_handler(), main(), make_default_log_name(), make_empty_rec(), make_huff_decode_table(), make_huff_trees(), make_new_entry(), make_new_set(), make_select(), manager(), map_file(), mapped_files::mapped_files(), mark_common_columns(), mem_alloc_error(), merge_many_buff(), mi_alloc_rec_buff(), mi_base_info_write(), mi_check_print_msg(), mi_close(), mi_create(), mi_delete_all_rows(), mi_delete_table(), mi_end_bulk_insert(), mi_extra(), mi_keydef_write(), mi_keyseg_write(), mi_lock_database(), mi_log(), mi_open(), mi_open_datafile(), mi_open_keyfile(), mi_panic(), mi_preload(), mi_recinfo_write(), mi_rename(), mi_repair(), mi_repair_by_sort(), mi_repair_parallel(), mi_report_error(), mi_sort_index(), mi_sort_records(), mi_state_info_read_dsk(), mi_state_info_write(), mi_status(), mi_uniquedef_write(), modify_defaults_file(), modify_grant_table(), mrg_close(), multi_delete_precheck(), multi_delete_set_locks_and_link_aux_tables(), multi_update_precheck(), my_append(), my_b_append_tell(), my_b_filelength(), my_b_fill(), my_b_flush_io_cache(), my_chsize(), my_close(), my_coll_agg_error(), my_copy(), my_copystat(), my_create_with_symlink(), my_delete(), my_delete_with_symlink(), my_dir(), my_dirend(), my_error_register(), my_error_unregister(), my_fclose(), my_fdopen(), my_fopen(), my_fread(), my_free_open_file_info(), my_fwrite(), my_getwd(), my_load_path(), my_lock(), my_lread(), my_lwrite(), my_malloc(), my_mkdir(), my_net_init(), my_once_alloc(), my_path(), my_pread(), my_pwrite(), my_read(), my_read_charset_file(), my_readlink(), my_realloc(), my_realpath(), my_register_filename(), my_rename(), my_rename_with_symlink(), my_set_max_open_files(), my_setwd(), my_stat(), my_str_free_mysqld(), my_str_malloc_mysqld(), my_string_ptr_sort(), my_symlink(), my_sync(), my_tz_free(), my_write(), my_yyoverflow(), myisamchk(), myisamchk_init(), myrg_close(), myrg_create(), myrg_open(), mysql_alter_table(), mysql_alter_tablespace(), mysql_assign_to_keycache(), mysql_change_db(), mysql_change_user(), mysql_client_binlog_statement(), mysql_close(), mysql_close_free(), mysql_close_free_options(), mysql_create_db(), mysql_create_frm(), mysql_create_like_table(), mysql_create_or_drop_trigger(), mysql_create_table_internal(), mysql_create_user(), mysql_create_view(), mysql_delete(), mysql_derived_prepare(), mysql_discard_or_import_tablespace(), mysql_drop_user(), mysql_drop_view(), mysql_end(), mysql_execute_command(), mysql_free_result(), mysql_frm_type(), mysql_grant(), mysql_ha_close(), mysql_ha_hash_free(), mysql_ha_open(), mysql_ha_read(), mysql_init(), mysql_init_character_set(), mysql_insert(), mysql_install_plugin(), mysql_list_fields(), mysql_load(), mysql_lock_abort(), mysql_lock_abort_for_thread(), mysql_lock_downgrade_write(), mysql_lock_merge(), mysql_lock_tables(), mysql_make_view(), mysql_manager_close(), mysql_manager_connect(), mysql_manager_init(), mysql_manager_submit(), mysql_multi_delete_prepare(), mysql_new_select(), mysql_options(), mysql_prepare_delete(), mysql_prepare_insert_check_table(), mysql_prepare_table(), mysql_prepare_update(), mysql_print_status(), mysql_query_with_error_report(), mysql_read_default_options(), mysql_register_view(), mysql_rename_db(), mysql_rename_table(), mysql_rename_tables(), mysql_rename_user(), mysql_reset_errors(), mysql_rm_arc_files(), mysql_rm_db(), mysql_rm_known_files(), mysql_rm_table(), mysql_rm_table_part2(), mysql_rm_tmp_tables(), mysql_routine_grant(), mysql_select_db(), mysql_set_character_set(), mysql_show_grants(), mysql_sql_stmt_close(), mysql_sql_stmt_execute(), mysql_stmt_close(), mysql_stmt_execute(), mysql_stmt_fetch(), mysql_stmt_get_longdata(), mysql_stmt_init(), mysql_stmt_prepare(), mysql_stmt_result_metadata(), mysql_stmt_store_result(), mysql_store_result(), mysql_table_dump(), mysql_table_grant(), mysql_test_delete(), mysql_test_insert(), mysql_test_multidelete(), mysql_test_select(), mysql_truncate(), mysql_uninstall_plugin(), mysql_unlock_tables(), mysql_write_frm(), mysqld_dump_create_info(), mysqld_show_create(), mysqld_show_create_db(), MYSQLerror(), MYSQLlex(), NAMED_LIST::NAMED_LIST(), ndb_mgm_create_handle(), ndb_mgm_create_logevent_handle(), ndb_mgm_destroy_handle(), ndb_mgm_destroy_logevent_handle(), ndb_mgm_set_name(), net_end(), net_real_write(), net_realloc(), MYSQL_BIN_LOG::new_file_impl(), ha_tina::open(), sp_cursor::open(), MYSQL_BIN_LOG::open(), MYSQL_LOG::open(), open_binary_frm(), open_binlog(), open_cached_file(), open_file(), open_files(), open_grant_tables(), MYSQL_BIN_LOG::open_index_file(), open_isam_files(), open_new_frm(), open_sql_file_for_table(), open_table(), open_table_def(), open_table_error(), open_table_from_share(), open_temporary_table(), open_tmp_table(), open_unireg_entry(), ha_tina::open_update_temp_file_if_needed(), ilink::operator delete(), Server_side_cursor::operator delete(), sp_head::operator delete(), Event_timed::operator delete(), Log_event::operator delete(), ilink::operator new(), Event_timed::operator new(), Log_event::operator new(), opt_sum_query(), ha_archive::optimize(), JOIN::optimize(), pack_dirname(), pack_header(), pack_screens(), File_parser::parse(), parse_charset_string(), parse_comma(), parse_delimiter(), parse_error_offset(), parse_error_string(), parse_input_file(), parse_message_string(), CommandInterpreter::parseBlockSpecification(), NdbDictInterface::parseTableInfo(), plugin_add(), plugin_dl_add(), plugin_load(), JOIN::prepare(), prepare_blob_field(), prepare_create_field(), prepare_for_repair(), prepare_for_restore(), prepare_schema_table(), st_table_list::prepare_view_securety_context(), primary_key_fields(), print_conclusions_csv(), handler::print_error(), print_index(), handler::print_keydup_error(), print_lock_error(), proc_analyse_init(), Load_log_processor::process(), process_all_databases(), process_all_tables_in_db(), process_event(), Load_log_processor::process_first_event(), process_selected_tables(), Table_triggers_list::process_triggers(), Handle_old_incorrect_trigger_table_hook::process_unknown_string(), push_warning(), put_blob_in_record(), put_dbopt(), putLong(), Query_log_event::Query_log_event(), QUICK_RANGE_SELECT::QUICK_RANGE_SELECT(), quick_rm_table(), rea_create_table(), read_block(), read_buffpek_from_file(), read_ddl_log_file_entry(), read_ddl_log_header(), READ_INFO::read_field(), READ_INFO::READ_INFO(), read_init_file(), read_line(), Log_event::read_log_event(), read_meta_file(), ha_archive::read_meta_file(), Transparent_file::read_next(), read_query(), read_server_arguments(), read_string(), read_texts(), readfrm(), String::real_alloc(), real_open_cached_file(), String::realloc(), Events::reconstruct_interval_expression(), recreate_table(), sp_head::recursion_level_error(), reg_replace(), release_ddl_log(), reload_acl_and_cache(), remove_dup_with_compare(), remove_dup_with_hash_index(), rename_file_ext(), rename_in_schema_file(), rename_tables(), MYSQL_QUERY_LOG::reopen_file(), reopen_tables(), ha_tina::repair(), replace_column_table(), replace_db_table(), replace_routine_table(), replace_strings(), replace_table_table(), replace_user_table(), report_error(), Buffer::reserve(), My_auto_ptr< T >::reset(), QUICK_RANGE_SELECT::reset(), MYSQL_BIN_LOG::reset_logs(), reset_root_defaults(), reset_stmt_handle(), reset_tree(), resize_queue(), resolve_ref_in_select_and_group(), ha_myisam::restore(), rm_dir_w_symlink(), rm_temporary_table(), rm_trigger_file(), rm_trigname_file(), ha_tina::rnd_end(), Rotate_log_event::Rotate_log_event(), Item_in_subselect::row_value_transformer(), rr_from_cache(), rr_handle_error(), rr_quick(), Event_scheduler::run(), run_scheduler(), run_task(), safe_hash_entry_free(), safe_hash_set(), User_map::save(), save_index(), save_state(), search_default_file_with_ext(), Item_in_subselect::select_in_like_transformer(), Protocol::send_fields(), set_charset(), Arg_comparator::set_compare_func(), set_dynamic(), Gis_read_stream::set_error_msg(), set_field_to_null(), set_field_to_null_with_conversions(), set_root(), setup_group(), setup_procedure(), setup_tables(), setval(), String::shrink(), Item_in_subselect::single_value_transformer(), sort_ft_key_read(), sort_ft_key_write(), sort_one_index(), sort_record_index(), sort_write_record(), sp_add_to_query_tables(), sp_cache_routines_and_add_tables_aux(), sp_change_security_context(), sp_exist_routines(), sp_grant_privileges(), Item_func_sp::sp_result_field(), spawn_init(), sql_alloc(), sql_connect(), sql_create_definition_file(), sql_element_free(), sql_kill(), sql_parse_prepare(), statement_cleanup(), static_get_options(), stmt_read_row_from_cursor(), store_create_info(), store_natural_using_join_columns(), cmp_item_row::store_value_by_template(), str_to_file(), sync_ddl_log(), sys_check_ftb_syntax(), sys_check_log_path(), table_check_intact(), test_file_exists_res(), test_frm_bug(), test_if_almost_full(), test_if_case_insensitive(), SQL_SELECT::test_quick_select(), thd_init_client_charset(), Item_func_sp::tmp_table_field(), BackupRestore::translate_frm(), Transparent_file::Transparent_file(), trie_free(), trie_init(), unescape(), unlink_deleted_block(), sys_var_event_scheduler::update(), set_var_user::update(), sys_var_log_state::update(), sys_var_thd_date_time_format::update2(), update_auto_increment_key(), update_backward_delete_link(), update_dynamic_record(), Events::update_event(), update_frm_version(), update_hash(), update_non_unique_table_error(), update_precheck(), ha_tina::update_row(), update_sys_var_str(), update_sys_var_str_path(), update_user_table(), usage(), User_level_lock::User_level_lock(), Item_load_file::val_str(), var_copy(), var_free(), var_init(), var_set(), st_table_list::view_check_option(), vio_delete(), vio_init(), vio_new(), vio_reset(), wait_if_global_read_lock(), wait_pidfile(), wf_comp(), wf_end(), MYSQL_BIN_LOG::write(), Show_instance_log::write_data(), write_db_opt(), write_ddl_log_file_entry(), write_delayed(), write_header(), write_huff_tree(), write_keys(), write_meta_file(), ha_archive::write_meta_file(), write_record(), ha_tina::write_row(), ha_archive::write_row(), writefrm(), xid_cache_insert(), xid_free_hash(), Buffer::~Buffer(), Create_file_log_event::~Create_file_log_event(), Format_description_log_event::~Format_description_log_event(), Gis_read_stream::~Gis_read_stream(), Guardian_thread::~Guardian_thread(), Instance_options::~Instance_options(), mapped_files::~mapped_files(), My_auto_ptr< T >::~My_auto_ptr(), NAMED_LIST::~NAMED_LIST(), Query_log_event::~Query_log_event(), QUICK_GROUP_MIN_MAX_SELECT::~QUICK_GROUP_MIN_MAX_SELECT(), QUICK_INDEX_MERGE_SELECT::~QUICK_INDEX_MERGE_SELECT(), QUICK_RANGE_SELECT::~QUICK_RANGE_SELECT(), QUICK_ROR_INTERSECT_SELECT::~QUICK_ROR_INTERSECT_SELECT(), QUICK_ROR_UNION_SELECT::~QUICK_ROR_UNION_SELECT(), READ_INFO::~READ_INFO(), Rotate_log_event::~Rotate_log_event(), Transparent_file::~Transparent_file(), and User_level_lock::~User_level_lock().
| #define MYSQL_UNIVERSAL_CLIENT_CHARSET MYSQL_DEFAULT_CHARSET_NAME |
Definition at line 1399 of file my_global.h.
| #define NEAR |
Definition at line 849 of file my_global.h.
| #define NEAR_F |
Definition at line 591 of file my_global.h.
| #define NETWARE_SET_SCREEN_MODE | ( | A | ) |
Definition at line 93 of file my_global.h.
| #define NEVER_INLINE |
Definition at line 208 of file my_global.h.
| #define NO_HASH |
Definition at line 725 of file my_global.h.
| #define NullS (char *) 0 |
Definition at line 846 of file my_global.h.
Referenced by add_field_to_list(), add_line(), add_load_option(), add_wrong_ip(), append_file_to_dir(), ha_myisam::backup(), BaseName(), build_completion_hash(), build_table_filename(), build_tmptable_filename(), Table_triggers_list::check_n_load(), CLI_MYSQL_REAL_CONNECT(), client_connect(), client_disconnect(), com_edit(), com_server_help(), Instance_options::complete_initialization(), copy_event_to_schema_table(), create_ddl_log_file_name(), create_defaults_file(), create_file(), create_instance_in_file(), create_select_for_variable(), create_sys_files(), create_temp_file(), create_tmp_table(), Table_triggers_list::create_trigger(), create_virtual_tmp_table(), db_connect(), db_create_routine(), dbConnect(), dispatch_command(), do_command(), do_connect(), dump_all_tablespaces(), dump_routines_for_db(), dump_table(), dyn_string_cmp(), examine_log(), execute_ddl_log_action(), extract_date_time(), filename_to_tablename(), fill_open_tables(), fill_schema_charsets(), fill_schema_collation(), fill_schema_column_privileges(), fill_schema_proc(), fill_schema_processlist(), fill_schema_schema_privileges(), fill_schema_table_privileges(), fill_schema_user_privileges(), fill_status(), fill_variables(), find_field_in_tables(), find_file_in_path(), fix_paths(), fix_table_name(), fix_type_pointers(), flush_error_log(), fn_format(), fn_format_relative_to_data_home(), Item_ident::full_name(), LOGGER::general_log_print(), get_arg(), get_charsets_dir(), Gis_read_stream::get_error_msg(), get_field(), get_ha_error_msg(), get_index_field_values(), get_internal_charset(), get_one_option(), get_options(), get_or_create_user_conn(), Instance_options::get_pid_filename(), get_schema_column_record(), get_schema_tables_record(), get_schema_views_record(), get_share(), ha_archive::get_share(), Table_triggers_list::get_trigger_info(), get_view_structure(), getTableName(), ha_create_table(), ha_create_table_from_engine(), handle_bootstrap(), handle_one_connection(), handle_request_for_tables(), index(), Load_log_processor::init_by_dir_name(), int2str(), intern_filename(), Instance::is_running(), iter_schema_engines(), list_dbs(), list_fields(), list_table_status(), list_tables(), Event_timed::load_from_row(), lock_db_insert(), main(), make_character_sets_old_format(), make_columns_old_format(), make_db_list(), make_new_entry(), make_old_format(), make_proc_old_format(), make_schemata_old_format(), make_table_names_old_format(), mi_check_print_msg(), mi_open(), my_load_path(), my_print_default_files(), my_realpath(), my_search_option_files(), myrg_create(), mysql_admin_table(), mysql_checksum_table(), mysql_close(), mysql_create_db(), mysql_create_like_table(), mysql_debug(), mysql_execute_command(), mysql_ha_open(), mysql_ha_read(), mysql_init_variables(), mysql_load(), mysql_manager_connect(), mysql_recreate_table(), mysql_rename_view(), mysql_rm_arc_files(), mysql_rm_db(), mysql_rm_known_files(), mysql_routine_grant(), mysql_server_init(), mysql_show_grants(), mysql_stmt_store_result(), mysql_table_grant(), mysql_write_frm(), mysqld_list_processes(), network_init(), new_command_generator(), open_file(), open_new_frm(), open_sql_file_for_table(), open_table_def(), open_table_error(), open_unireg_entry(), parse_args(), plugin_add(), plugin_dl_add(), prepare_for_repair(), primary_key_fields(), put_dbopt(), rea_create_table(), read_query(), read_server_arguments(), remove_dup_with_hash_index(), rename_file_ext(), rename_in_schema_file(), replace_routine_table(), replace_table_table(), QUICK_RANGE_SELECT::reset(), MYSQL_BIN_LOG::reset_logs(), ha_myisam::restore(), rindex(), search_default_file_with_ext(), set_server_version(), LOGGER::slow_log_print(), sp_find_routine(), sql_connect(), sql_create_definition_file(), sql_real_connect(), stmt_read_row_from_cursor(), str2int(), str_to_datetime_with_warn(), str_to_file(), str_to_time_with_warn(), strchr(), strcont(), strrchr(), strxmov(), strxnmov(), test_file_exists_res(), test_frm_bug(), test_if_hard_path(), test_long_data(), test_long_data_str(), test_mem_overun(), test_prepare(), test_prepare_grant(), test_select_show(), test_view_sp_list_fields(), update_frm_version(), var_set(), verify_col_data(), MYSQL_QUERY_LOG::write(), and write_db_opt().
| #define O_BINARY 0 |
Definition at line 637 of file my_global.h.
| #define O_NOFOLLOW 0 |
Definition at line 655 of file my_global.h.
Referenced by create_frm(), create_temp_file(), and myrg_create().
| #define O_SHARE 0 |
Definition at line 635 of file my_global.h.
| #define O_SHORT_LIVED 0 |
Definition at line 652 of file my_global.h.
| #define O_TEMPORARY 0 |
Definition at line 649 of file my_global.h.
Definition at line 842 of file my_global.h.
| #define offsetof | ( | TYPE, | |||
| MEMBER | ) | ((size_t) &((TYPE *)0)->MEMBER) |
Definition at line 743 of file my_global.h.
Referenced by add_diff_to_status(), add_to_status(), check_one_rb_key(), RestoreLogIterator::getNextLogEntry(), heap_rfirst(), heap_rlast(), heap_rnext(), heap_rprev(), SafeCounter::init(), main(), merge_buffers(), merge_walk(), and plugin_dl_add().
| #define ONCE_ALLOC_INIT (uint) (4096-MALLOC_OVERHEAD) |
Definition at line 714 of file my_global.h.
| #define OS_FILE_LIMIT 65535 |
Definition at line 691 of file my_global.h.
| #define POSIX_MISTAKE 1 |
Definition at line 471 of file my_global.h.
| #define PREFETCH_READ | ( | addr | ) |
Definition at line 136 of file my_global.h.
| #define PREFETCH_READ_LOCALITY | ( | addr, | |||
| locality | ) |
Definition at line 137 of file my_global.h.
| #define PREFETCH_WRITE | ( | addr | ) |
Definition at line 138 of file my_global.h.
| #define PREFETCH_WRITE_LOCALITY | ( | addr, | |||
| locality | ) |
Definition at line 139 of file my_global.h.
| #define PTR_BYTE_DIFF | ( | A, | |||
| B | ) | (my_ptrdiff_t) ((byte*) (A) - (byte*) (B)) |
Definition at line 844 of file my_global.h.
Referenced by _mi_read_pack_info(), delayed_insert::get_local_table(), and insert_pointer_name().
| #define PURIFY_OR_LINT_INIT | ( | var | ) |
| #define qsort_t RETQSORTTYPE |
Definition at line 622 of file my_global.h.
Definition at line 476 of file my_global.h.
| #define RECORD_CACHE_SIZE (uint) (64*1024-MALLOC_OVERHEAD) |
| #define reg1 register |
Definition at line 1016 of file my_global.h.
Referenced by _mi_calc_var_pack_key_length(), _mi_get_binary_pack_key(), _mi_get_pack_key(), _mi_keylength(), _mi_keylength_part(), _mi_make_key(), _mi_move_key(), _mi_put_key_in_record(), _sanity(), alloc_key_blocks(), alloc_root(), allow_break(), bmove512(), com_help(), decode_bytes(), find_type(), find_uniq_filename(), fn_format(), free_root(), get_hash_link(), get_param_length(), get_string(), get_text(), heap_delete_table(), heap_rename(), hp_find_block(), hp_get_new_block(), hp_search(), init_case_convert(), init_huff_count(), init_strings(), join_init_cache(), key_cache_insert(), key_cache_read(), key_cache_write(), lock_external(), make_sortkey(), mark_blocks_free(), mi_sort_index(), my_once_alloc(), my_once_free(), my_remember_signal(), my_seek(), mysql_lock_remove(), MYSQLlex(), net_field_length(), net_field_length_ll(), open_table(), or_bits(), pack_screens(), ptr_compare(), ptr_compare_0(), ptr_compare_1(), ptr_compare_2(), ptr_compare_3(), register_used_fields(), replace_strings(), replace_strings_append(), rr_from_cache(), strlength(), uf_intervall(), and write_field_info().
| #define reg10 register |
Definition at line 1025 of file my_global.h.
| #define reg11 register |
Definition at line 1026 of file my_global.h.
| #define reg12 register |
Definition at line 1027 of file my_global.h.
| #define reg13 register |
Definition at line 1028 of file my_global.h.
| #define reg14 register |
Definition at line 1029 of file my_global.h.
| #define reg15 register |
Definition at line 1030 of file my_global.h.
| #define reg16 register |
Definition at line 1031 of file my_global.h.
| #define reg2 register |
Definition at line 1017 of file my_global.h.
Referenced by _mi_put_key_in_record(), _sanity(), alloc_root(), chk_del(), cleanup_dirname(), descript(), find_ref_key(), find_type(), get_date(), init_case_convert(), init_huff_count(), init_strings(), mark_blocks_free(), max_bit(), mi_sort_index(), my_b_vprintf(), my_once_alloc(), my_vsnprintf(), next_io_size(), pack_fields(), queue_insert(), r_strinstr(), replace_strings(), replace_strings_append(), setup_fields(), sortlength(), strinstr(), strip_sp(), strlength(), test_if_number(), and wf_test().
| #define reg3 register |
Definition at line 1018 of file my_global.h.
Referenced by _mi_pack_rec_unpack(), _mi_rec_check(), _mi_rec_pack(), _mi_rec_unpack(), _mi_write_keypage(), cleanup_dirname(), decode_bytes(), descript(), find_ref_key(), hp_find_block(), make_sortkey(), mi_update(), ptr_compare(), ptr_compare_0(), ptr_compare_1(), ptr_compare_2(), ptr_compare_3(), rindex(), soundex(), strcont(), strip_sp(), strrchr(), wf_test(), wild_case_compare(), and write_bits().
| #define reg4 register |
Definition at line 1019 of file my_global.h.
Referenced by _mi_bin_search(), cleanup_dirname(), decode_bytes(), descript(), and Field_decimal::store().
| #define reg5 register |
Definition at line 1020 of file my_global.h.
Referenced by cleanup_dirname(), make_sortkey(), and register_used_fields().
| #define reg6 register |
Definition at line 1021 of file my_global.h.
| #define reg7 register |
Definition at line 1022 of file my_global.h.
| #define reg8 register |
Definition at line 1023 of file my_global.h.
| #define reg9 register |
Definition at line 1024 of file my_global.h.
Definition at line 536 of file my_global.h.
Referenced by field_real::add(), cost_group_min_max(), my_double_round(), Field_datetime::store(), Field_newdate::store(), Field_date::store(), Field_timestamp::store(), Field_long::store(), Field_medium::store(), Field_short::store(), Field_tiny::store(), Item_variance_field::val_int(), Item_sum_avg::val_int(), Item_sum_num::val_int(), Item_avg_field::val_int(), Item_sum_hybrid::val_int(), Item_sum_sum::val_int(), Item_real_func::val_int(), Item_func_numhybrid::val_int(), Item_float::val_int(), Hybrid_type_traits::val_int(), Item_cache_real::val_int(), Item_param::val_int(), Field_double::val_int(), and Field_float::val_int().
| #define RTLD_NOW 1 |
| #define SC_MAXWIDTH 256 |
| #define SCALE_SEC 100 |
| #define SCALE_USEC 10000 |
| #define set_bits | ( | type, | |||
| bit_count | ) | (sizeof(type)*8 <= (bit_count) ? ~(type) 0 : ((((type) 1) << (bit_count)) - (type) 1)) |
Definition at line 533 of file my_global.h.
| #define set_if_bigger | ( | a, | |||
| b | ) | do { if ((a) < (b)) (a)=(b); } while(0) |
Definition at line 530 of file my_global.h.
Referenced by _mi_read_pack_info(), best_access_path(), calculate_interval_lengths(), Item_sum::check_sum_func(), chk_key(), cost_group_min_max(), Item_func::count_decimal_length(), Item_func::count_only_length(), Item_func::count_real_length(), create_tmp_table(), Item_func_case::decimal_precision(), decimal_shift(), do_div_mod(), find_uniq_filename(), Item_sum_num::fix_fields(), Item_field::fix_fields(), Item_xml_str_func::fix_length_and_dec(), Item_func_elt::fix_length_and_dec(), Item_func_soundex::fix_length_and_dec(), Item_func_min_max::fix_length_and_dec(), Item_func_case::fix_length_and_dec(), Item_sum::fix_num_length_and_dec(), Item_func::fix_num_length_and_dec(), Item_field::fix_outer_field(), get_one_option(), get_quick_keys(), get_replace_column(), heap_create(), heap_update_auto_increment(), init_common_variables(), mi_preload(), my_b_flush_io_cache(), pack_fields(), READ_INFO::READ_INFO(), recreate_table(), str_to_datetime(), update_auto_increment_key(), update_dynamic_record(), and update_key_parts().
| #define set_if_smaller | ( | a, | |||
| b | ) | do { if ((a) > (b)) (a)=(b); } while(0) |
Definition at line 531 of file my_global.h.
Referenced by _mi_ft_convert_to_ft2(), _mi_make_key(), _mi_pack_key(), best_access_path(), bitmap_set_prefix(), check_struct_option(), Item_str_func::check_well_formed_result(), Field_varstring::cmp_binary(), Field_blob::cmp_max(), Field_varstring::cmp_max(), Item_func::count_decimal_length(), create_tmp_table(), decimal_mul(), do_add(), do_sub(), Item_func_date_format::fix_length_and_dec(), Item_func_substr::fix_length_and_dec(), Item_func_integer::fix_length_and_dec(), Item_func_div::fix_length_and_dec(), Item_func_int_val::fix_num_length_and_dec(), get_best_covering_ror_intersect(), get_best_ror_intersect(), Field_blob::get_key_image(), Field_varstring::get_key_image(), get_system_var(), hp_hashnr(), hp_key_cmp(), hp_make_key(), hp_rb_make_key(), hp_rb_pack_key(), hp_rec_hashnr(), hp_rec_key_cmp(), key_cache_insert(), key_cache_read(), Field_blob::key_cmp(), Field_varstring::key_cmp(), key_cmp_if_same(), key_copy(), Item_str_func::left_right_max_length(), make_sortkey(), mi_open(), mi_unique_comp(), mi_unique_hash(), my_decimal_precision_to_length(), my_strnxfrm_simple(), my_vsnprintf(), mysql_prepare_table(), net_send_error_packet(), Field_varstring::pack(), Field_string::pack(), Field_varstring::pack_cmp(), Field_blob::pack_key(), Field_varstring::pack_key(), resize_queue(), Rotate_log_event::Rotate_log_event(), sortlength(), sp_prepare_create_field(), sql_strmake_with_convert(), SQL_SELECT::test_quick_select(), handler::update_auto_increment(), and walk_and_push().
| #define SET_STACK_SIZE | ( | X | ) |
Definition at line 746 of file my_global.h.
| #define set_timespec | ( | ABSTIME, | |||
| SEC | ) |
Value:
{\
struct timeval tv;\
gettimeofday(&tv,0);\
(ABSTIME).tv_sec=tv.tv_sec+(time_t) (SEC);\
(ABSTIME).tv_nsec=tv.tv_usec*1000;\
}
Definition at line 1069 of file my_global.h.
| #define set_timespec_nsec | ( | ABSTIME, | |||
| NSEC | ) |
Value:
{\
ulonglong now= my_getsystime() + (NSEC/100); \
(ABSTIME).tv_sec= (now / ULL(10000000)); \
(ABSTIME).tv_nsec= (now % ULL(10000000) * 100 + ((NSEC) % 100)); \
}
Definition at line 1078 of file my_global.h.
Referenced by Item_func_sleep::val_int().
| #define sgn | ( | a | ) | (((a) < 0) ? -1 : ((a) > 0) ? 1 : 0) |
Definition at line 527 of file my_global.h.
Referenced by NdbSqlUtil::cmp_olddecimal(), and FT_DOC_cmp().
| #define shortget | ( | V, | |||
| M | ) | do { V = sint2korr(M); } while(0) |
Definition at line 1359 of file my_global.h.
Referenced by Field_short::cmp(), Field_blob::get_length(), rr_from_cache(), set_param_short(), Field_enum::val_int(), Field_short::val_int(), and Field_short::val_real().
| #define shortstore | ( | T, | |||
| V | ) | int2store(T,V) |
Definition at line 1362 of file my_global.h.
Referenced by fetch_datetime_with_conversion(), fetch_float_with_conversion(), fetch_long_with_conversion(), fetch_result_short(), fetch_string_with_conversion(), Field_short::store(), Field_blob::store_length(), and Field_enum::store_type().
| #define sig_handler RETSIGTYPE |
| #define sint2korr | ( | A | ) |
| #define sint3korr | ( | A | ) |
Value:
((int32) ((((uchar) (A)[2]) & 128) ? \ (((uint32) 255L << 24) | \ (((uint32) (uchar) (A)[2]) << 16) |\ (((uint32) (uchar) (A)[1]) << 8) | \ ((uint32) (uchar) (A)[0])) : \ (((uint32) (uchar) (A)[2]) << 16) |\ (((uint32) (uchar) (A)[1]) << 8) | \ ((uint32) (uchar) (A)[0])))
Definition at line 1177 of file my_global.h.
| #define sint4korr | ( | A | ) |
Value:
(int32) (((int32) ((uchar) (A)[0])) +\ (((int32) ((uchar) (A)[1]) << 8)) +\ (((int32) ((uchar) (A)[2]) << 16)) +\ (((int32) ((int16) (A)[3]) << 24)))
Definition at line 1185 of file my_global.h.
Definition at line 1189 of file my_global.h.
| #define SOCKET_EADDRINUSE EADDRINUSE |
| #define SOCKET_EAGAIN EAGAIN |
Definition at line 969 of file my_global.h.
Referenced by handle_connections_sockets(), yaSSL::Socket::receive(), vio_should_retry(), and vio_was_interrupted().
| #define SOCKET_EINTR EINTR |
Definition at line 968 of file my_global.h.
Referenced by handle_connections_sockets(), net_real_write(), vio_should_retry(), and vio_was_interrupted().
| #define SOCKET_EMFILE EMFILE |
| #define SOCKET_ENFILE ENFILE |
| #define socket_errno errno |
Definition at line 966 of file my_global.h.
Referenced by cli_advanced_command(), CLI_MYSQL_REAL_CONNECT(), handle_connections_sockets(), network_init(), vio_close(), vio_errno(), vio_peer_addr(), vio_should_retry(), vio_was_interrupted(), and vio_write().
| #define SOCKET_ETIMEDOUT SOCKET_EINTR |
| #define SOCKET_EWOULDBLOCK EWOULDBLOCK |
Definition at line 971 of file my_global.h.
Referenced by yaSSL::Socket::receive(), vio_should_retry(), and vio_was_interrupted().
| #define SOCKOPT_OPTLEN_TYPE size_socket |
| #define SSIZE_MAX ((~((size_t) 0)) / 2) |
Definition at line 801 of file my_global.h.
| #define statistic_add | ( | V, | |||
| C, | |||||
| L | ) | (V)+=(C) |
Definition at line 1393 of file my_global.h.
| #define statistic_increment | ( | V, | |||
| L | ) | (V)++ |
Definition at line 1392 of file my_global.h.
| #define STDCALL |
Definition at line 859 of file my_global.h.
Definition at line 477 of file my_global.h.
Referenced by init_default_directories(), and my_search_option_files().
Definition at line 749 of file my_global.h.
Referenced by CommandInterpreter::executeClusterLog(), CommandInterpreter::executeDumpState(), and LocalConfig::parseString().
| #define swap_variables | ( | t, | |||
| a, | |||||
| b | ) | { register t dummy; dummy= a; a= b; b= dummy; } |
Definition at line 528 of file my_global.h.
Referenced by do_sub(), find_best(), foreign_key_prefix(), greedy_search(), ha_key_cmp(), key_and(), key_or(), main(), multi_reg_replace(), my_chsize(), mysql_unlock_read_tables(), store_top_level_join_columns(), String::swap(), and tree_or().
| #define SYSTEM_SIZEOF_OFF_T SIZEOF_OFF_T |
Definition at line 943 of file my_global.h.
| #define test | ( | a | ) | ((a) ? 1 : 0) |
Definition at line 529 of file my_global.h.
Referenced by _mi_decrement_open_count(), _mi_find_writepos(), _mi_rec_check(), _mi_rec_pack(), _mi_search(), best_access_path(), calc_week(), check_access(), check_column_grant_in_table_ref(), check_engine(), check_grant(), check_single_table_access(), check_some_access(), check_table_access(), check_that_all_fields_are_given_values(), check_user(), SEL_ARG::clone_and(), Arg_comparator::compare_e_binary_string(), Arg_comparator::compare_e_decimal(), Arg_comparator::compare_e_int(), Arg_comparator::compare_e_int_diff_signedness(), Arg_comparator::compare_e_real(), Arg_comparator::compare_e_string(), in_vector::compare_elems(), convert_constant_item(), copy_data_between_tables(), create_frm(), create_field::create_length_to_internal_length(), create_ref_for_key(), create_table_from_items(), create_table_precheck(), create_tmp_table(), cv__endword(), cv_next_word(), cv_prev_word(), d_search(), decimal2string(), Item_int::decimal_precision(), dispatch_command(), do_field_int(), fetch_long_with_conversion(), fetch_result_int32(), fetch_result_int64(), fetch_result_short(), fetch_result_tinyint(), fetch_string_with_conversion(), field_conv(), Item_func_round::fix_length_and_dec(), get_all_tables(), QUICK_RANGE_SELECT::get_next_prefix(), get_one_option(), get_options(), get_quick_select(), get_schema_column_record(), ha_check_storage_engine_flag(), Table_triggers_list::has_before_update_triggers(), has_path(), hp_key_cmp(), hp_make_key(), hp_rb_make_key(), JOIN::init(), init_io_cache(), Bitmap< default_width >::intersect_extended(), sp_head::is_not_allowed_in_function(), Item_bool_func2::is_null(), Field::is_null_in_record(), Field::is_null_in_record_with_offset(), sp_cursor::is_open(), Instance::is_running(), Bitmap< 64 >::is_set(), iter_schema_engines(), join_read_const_table(), key_cmp_if_same(), key_copy(), lex_start(), lock_table_name(), main(), make_global_read_lock_block_commit(), make_join_readinfo(), matching_cond(), mi_byte_checksum(), mi_create(), mi_extra(), mi_repair_by_sort(), mi_repair_parallel(), multi_update_precheck(), my_copy(), my_net_write(), myisamchk(), mysql_alter_table(), mysql_create_frm(), mysql_create_view(), mysql_delete(), mysql_discard_or_import_tablespace(), mysql_execute_command(), mysql_grant(), mysql_load(), mysql_multi_update(), mysql_options(), mysql_read_default_options(), mysql_repair_table(), mysql_routine_grant(), mysql_stmt_close(), mysql_stmt_execute(), mysql_table_grant(), NDB_COMMAND(), net_data_is_ready(), net_flush(), net_write_command(), open_binary_frm(), open_proc_table_for_update(), opt_sum_query(), Field::optimize_range(), Sensitive_cursor::post_open(), prepare_schema_table(), read_fixed_length(), handler::read_multi_range_first(), handler::read_multi_range_next(), read_sep_field(), Ndbd_mem_manager::release_impl(), ror_scan_selectivity(), run_test(), runTest(), Arg_comparator::set_compare_func(), Item_field::set_field(), setup_conversion_functions(), setup_fields(), sort_keyuse(), sort_write_record(), sp_get_prelocking_info(), sql_set_variables(), Field_bit::store_decimal(), Field_num::store_decimal(), str_to_datetime(), test_if_create_new_users(), test_if_subpart(), SQL_SELECT::test_quick_select(), unpack(), update_dynamic_record(), Item_func_weekday::val_int(), Item_func_sleep::val_int(), vio_blocking(), and wf_comp().
| #define test_all_bits | ( | a, | |||
| b | ) | (((a) & (b)) == (b)) |
Definition at line 532 of file my_global.h.
Referenced by mysql_change_db(), mysql_execute_command(), mysql_show_grants(), mysqld_show_create_db(), parse_date_time_format(), ha_myisam::repair(), and select_describe().
| #define thread_safe_add | ( | V, | |||
| C, | |||||
| L | ) | (V)+=(C) |
Definition at line 1390 of file my_global.h.
| #define thread_safe_increment | ( | V, | |||
| L | ) | (V)++ |
Definition at line 1389 of file my_global.h.
| #define thread_safe_sub | ( | V, | |||
| C, | |||||
| L | ) | (V)-=(C) |
Definition at line 1391 of file my_global.h.
| #define TRUE (1) |
Definition at line 541 of file my_global.h.
Referenced by _downheap(), abort_and_upgrade_lock(), abort_locked_tables(), About(), ac_trie_prepare(), LOGGER::activate_log_handler(), Item_sum_count_distinct::add(), Item_sum_avg::add(), QUICK_ROR_UNION_SELECT::add_info_string(), QUICK_ROR_INTERSECT_SELECT::add_info_string(), QUICK_INDEX_MERGE_SELECT::add_info_string(), add_key_field(), add_key_fields(), QUICK_ROR_UNION_SELECT::add_keys_and_lengths(), QUICK_ROR_INTERSECT_SELECT::add_keys_and_lengths(), QUICK_INDEX_MERGE_SELECT::add_keys_and_lengths(), Abstract_option_cmd::add_option(), QUICK_GROUP_MIN_MAX_SELECT::add_range(), add_ref_to_table_cond(), add_used_routine(), sp_head::add_used_tables_to_table_list(), User_map::add_user(), agg_item_charsets(), agg_item_collations(), alloc_group_fields(), alloc_query(), analyse_nodegroup_map(), String::append(), String::append_with_prefill(), archive_db_init(), Item_param::basic_const_item(), binlog_commit(), binlog_end_trans(), binlog_rollback(), binlog_savepoint_rollback(), binlog_savepoint_set(), bitmap_is_clear_all(), bitmap_is_set_all(), btr_create(), btr_cur_compress_if_useful(), btr_cur_insert_if_possible(), btr_cur_latch_leaves(), btr_cur_mark_dtuple_inherited_extern(), btr_cur_mark_extern_inherited_fields(), btr_cur_open_at_index_side(), btr_cur_optimistic_insert(), btr_cur_pessimistic_delete(), btr_cur_pessimistic_update(), btr_cur_search_to_nth_level(), btr_cur_unmark_extern_fields(), btr_estimate_n_rows_in_range(), btr_index_page_validate(), btr_index_rec_validate(), btr_node_ptr_delete(), btr_page_alloc(), btr_page_create(), btr_page_empty(), btr_page_get_father_for_rec(), btr_page_get_split_rec_to_left(), btr_page_get_split_rec_to_right(), btr_page_insert_fits(), btr_page_reorganize_low(), btr_parse_page_reorganize(), btr_pcur_move_to_next_page(), btr_pcur_move_to_prev(), btr_pcur_restore_position(), btr_push_update_extern_fields(), btr_search_build_page_hash_index(), btr_search_check_guess(), btr_search_guess_on_hash(), btr_search_sys_create(), btr_search_update_block_hash_info(), btr_search_update_hash_on_insert(), btr_search_validate(), btr_store_big_rec_extern_fields(), btr_validate_level(), btr_validate_tree(), buf_flush_batch(), buf_flush_ready_for_flush(), buf_flush_ready_for_replace(), buf_flush_try_page(), buf_flush_validate_low(), buf_flush_write_block_low(), buf_LRU_add_block_low(), buf_LRU_add_block_to_end_low(), buf_LRU_block_free_non_file_page(), buf_LRU_buf_pool_running_out(), buf_LRU_get_free_block(), buf_LRU_invalidate_tablespace(), buf_LRU_old_adjust_len(), buf_LRU_old_init(), buf_LRU_remove_block(), buf_LRU_search_and_free_block(), buf_page_create(), buf_page_get_gen(), buf_page_get_known_nowait(), buf_page_init_for_read(), buf_page_io_complete(), buf_page_is_corrupted(), buf_page_optimistic_get_func(), buf_page_peek(), buf_page_set_file_page_was_freed(), buf_pool_check_no_pending_io(), buf_pool_init(), buf_pool_invalidate(), buf_read_ibuf_merge_pages(), buf_read_page(), buf_read_page_low(), buf_read_recv_pages(), Field_datetime::can_be_compared_as_longlong(), Field_time::can_be_compared_as_longlong(), Field_newdate::can_be_compared_as_longlong(), Field_date::can_be_compared_as_longlong(), Field_year::can_be_compared_as_longlong(), Field_timestamp::can_be_compared_as_longlong(), change_group_ref(), change_password(), JOIN::change_result(), subselect_uniquesubquery_engine::change_result(), change_security_context(), Table_triggers_list::change_table_name(), Table_triggers_list::change_table_name_in_triggers(), change_to_use_tmp_fields(), ha_tina::check(), sys_var_max_user_conn::check(), check_access(), check_column_grant_in_table_ref(), check_column_name(), check_connection(), check_date(), check_db_name(), check_duplicate_names(), check_engine(), check_equality(), check_fields(), check_group_min_max_predicates(), ha_tina::check_if_locking_is_allowed(), handler::check_if_locking_is_allowed(), ha_myisam::check_if_locking_is_allowed(), handler::check_if_log_table_locking_is_allowed(), check_insert_fields(), check_interleaving_with_nj(), check_key_in_view(), Event_scheduler::check_n_suspend_if_needed(), Event_scheduler::check_n_wait_for_non_empty_queue(), check_prepared_statement(), check_quick_select(), check_reserved_words(), check_routine_access(), st_table_list::check_single_table(), Item_sum::check_sum_func(), Event_scheduler::check_system_tables(), check_table_access(), check_view_insertability(), Item_sum_hybrid::cleanup(), Item_maxmin_subselect::cleanup(), Item_func_group_concat::clear(), CLI_MYSQL_REAL_CONNECT(), client_connect(), close_cached_tables(), close_old_data_files(), close_thread_tables(), Cached_item_decimal::cmp(), Cached_item_field::cmp(), Cached_item_int::cmp(), Cached_item_real::cmp(), Cached_item_str::cmp(), cmp_dtuple_is_prefix_of_rec(), cmp_types_are_equal(), code_state(), compare_record(), Event_timed::compile(), Instance_map::complete_initialization(), Event_timed::compute_next_execution_time(), Item_name_const::const_item(), Item_sp_variable::const_item(), Field::convert_decimal2longlong(), String::copy(), String::copy_aligned(), copy_data_between_tables(), create_fromuni(), create_func_uuid(), create_ref_for_key(), create_string(), create_table_precheck(), Table_triggers_list::create_trigger(), create_view_field(), TransporterRegistry::createSHMTransporter(), db_create_routine(), db_find_routine(), db_find_routine_aux(), db_show_routine_status(), db_update_routine(), deactivate_ddl_log_entry(), LOGGER::deactivate_log_handler(), Prepared_statement::deallocate(), decimal_round(), delete_precheck(), Thread_registry::deliver_shutdown(), dfield_check_typed(), dfield_check_typed_no_assert(), dfield_data_is_binary_equal(), dfield_print_also_hex(), dict_accept(), dict_build_table_def_step(), dict_check_tablespaces_and_store_max_id(), dict_col_name_is_reserved(), dict_create_foreign_constraints_low(), dict_create_or_check_foreign_constraint_tables(), dict_create_sys_fields_tuple(), dict_foreign_add_to_cache(), dict_foreign_error_report(), dict_foreign_eval_sql(), dict_foreign_parse_drop_constraints(), dict_hdr_create(), dict_index_add_to_cache(), dict_index_contains_col_or_prefix(), dict_index_find_cols(), dict_index_name_print(), dict_load_indexes(), dict_load_table(), dict_print(), dict_print_info_on_foreign_key_in_create_format(), dict_print_info_on_foreign_keys(), dict_scan_col(), dict_scan_table_name(), dict_skip_word(), dict_table_add_to_cache(), dict_table_autoinc_initialize(), dict_table_col_in_clustered_key(), dict_table_print_low(), dict_table_referenced_by_foreign_key(), dict_table_rename_in_cache(), dict_tables_have_same_db(), dict_update_statistics_low(), dispatch_command(), display_table_locks(), Hybrid_type_traits_decimal::div(), do_block(), do_command(), do_exec(), do_system(), do_test(), Event_scheduler::drop_event(), dtuple_check_typed(), dtuple_check_typed_no_assert(), dtuple_convert_big_rec(), dtuple_datas_are_ordering_equal(), dtype_is_binary_string_type(), dtype_is_non_binary_string_type(), dtype_is_string_type(), dtype_validate(), dump_leaf_key(), dynstr_append_mem(), dynstr_realloc(), dynstr_set(), ha_archive::end_bulk_insert(), Item_param::eq(), escape_quotes_for_mysql(), escape_string_for_mysql(), eval_cmp(), eval_const_cond(), eval_logical(), eval_notfound(), event_worker_thread(), JOIN::exec(), NdbEventOperationImpl::execSUB_TABLE_DATA(), Prepared_statement::execute(), sp_instr_set_case_expr::execute(), sp_instr_freturn::execute(), sp_instr_jump_if_not::execute(), sp_instr_set_trigger_field::execute(), sp_instr_set::execute(), sp_head::execute(), Item_func_sp::execute(), execute_ddl_log_action(), execute_ddl_log_recovery(), sp_head::execute_function(), Item_func_sp::execute_impl(), sp_head::execute_procedure(), Event_scheduler::execute_top(), sp_head::execute_trigger(), ha_tina::extra(), Sensitive_cursor::fetch(), fetch_datetime_with_conversion(), fil_addr_is_null(), fil_check_adress_in_tablespace(), fil_create_new_single_table_tablespace(), fil_delete_tablespace(), fil_discard_tablespace(), fil_extend_space_to_desired_size(), fil_inc_pending_ibuf_merges(), fil_load_single_table_tablespace(), fil_load_single_table_tablespaces(), fil_mutex_enter_and_prepare_for_io(), fil_node_complete_io(), fil_node_open_file(), fil_open_single_table_tablespace(), fil_rename_tablespace(), fil_rename_tablespace_in_mem(), fil_reset_too_high_lsns(), fil_space_create(), fil_space_for_table_exists_in_mem(), fil_space_free(), fil_space_is_flushed(), fil_space_reserve_free_extents(), fil_tablespace_deleted_or_being_deleted_in_mem(), fil_tablespace_exists_in_mem(), fil_try_to_close_file_in_LRU(), fil_validate(), fil_write_lsn_and_arch_no_to_file(), String::fill(), fill_defined_view_parts(), sp_head::fill_field_definition(), st_table::fill_item_list(), fill_open_tables(), fill_record(), fill_record_n_invoke_before_triggers(), fill_schema_charsets(), fill_schema_collation(), fill_schema_processlist(), Item_func_sp::find_and_check_access(), sp_pcontext::find_cursor(), find_field_in_tables(), sp_rcontext::find_handler(), sp_pcontext::find_handler(), find_item_equal(), Item_field::find_item_in_field_list_processor(), find_item_in_list(), find_order_in_list(), Item_func_convert_tz::fix_fields(), Item_func_group_concat::fix_fields(), Item_sum_hybrid::fix_fields(), Item_sum_num::fix_fields(), Item_subselect::fix_fields(), Item_func_current_user::fix_fields(), Item_row::fix_fields(), Item_func_match::fix_fields(), Item_user_var_as_out_param::fix_fields(), Item_func_set_user_var::fix_fields(), Item_func_rand::fix_fields(), Item_func_connection_id::fix_fields(), Item_func::fix_fields(), Item_func_like::fix_fields(), Item_cond::fix_fields(), Item_func_case::fix_fields(), Item_in_optimizer::fix_fields(), Item_trigger_field::fix_fields(), Item_insert_value::fix_fields(), Item_default_value::fix_fields(), Item_direct_view_ref::fix_fields(), Item_ref::fix_fields(), Item_field::fix_fields(), Item_name_const::fix_fields(), Item_field::fix_outer_field(), flst_validate(), Log_to_csv_event_handler::flush(), flush_handlerton(), foreign_key_prefix(), free_share(), ha_archive::free_share(), fseg_alloc_free_page_low(), fseg_free_page_low(), fseg_free_step(), fseg_free_step_not_header(), fseg_mark_page_used(), fseg_validate_low(), fsp_alloc_free_page(), fsp_alloc_seg_inode_page(), fsp_free_page(), fsp_header_init(), fsp_reserve_free_extents(), fsp_reserve_free_pages(), fsp_try_extend_data_file(), fsp_validate(), ft_init_stopwords(), ft_parse_internal(), ftb_find_relevance_parse(), get_all_tables(), get_best_combination(), get_best_covering_ror_intersect(), get_best_disjunct_quick(), get_best_group_min_max(), get_best_ror_intersect(), get_constant_key_infix(), get_file_options_ulllist(), get_free_ddl_log_entry(), get_key_scans_params(), get_mm_leaf(), QUICK_ROR_UNION_SELECT::get_next(), QUICK_INDEX_MERGE_SELECT::get_next(), get_one_option(), get_options(), Field_iterator_table_ref::get_or_create_column_ref(), get_schema_column_record(), get_schema_key_column_usage_record(), get_schema_partitions_record(), get_schema_stat_record(), get_schema_tables_record(), get_schema_tables_result(), get_schema_views_record(), get_share(), ha_archive::get_share(), get_topics_for_keyword(), get_user_name(), NTService::GetOS(), NTService::got_service_option(), grant_load(), greedy_search(), ha_create(), ha_create_table(), ha_flush_logs(), ha_insert_for_fold(), ha_show_status(), ha_validate(), delayed_insert::handle_inserts(), handle_manager(), Field_set::has_charset(), Field_enum::has_charset(), Field_blob::has_charset(), Field_varstring::has_charset(), Field_string::has_charset(), hostname_requires_resolving(), ib_list_create_heap(), ibuf_add_free_page(), ibuf_contract_after_insert(), ibuf_contract_ext(), ibuf_data_enough_free_for_insert(), ibuf_data_sizes_update(), ibuf_data_too_much_free(), ibuf_delete_rec(), ibuf_dummy_index_create(), ibuf_enter(), ibuf_exit(), ibuf_init_at_db_start(), ibuf_insert(), ibuf_insert_low(), ibuf_is_empty(), ibuf_merge_or_delete_for_page(), ibuf_page(), ibuf_page_low(), ibuf_rec_get_volume(), ibuf_update_max_tablespace_id(), ibuf_validate_low(), include_table(), sp_rcontext::init(), Item_func_user::init(), create_field::init(), Event_timed::init(), Event_scheduler::init(), WindowsService::Init(), User_map::init(), Named_value_arr::init(), Log_to_file_event_handler::init(), Guardian_thread::init(), Abstract_option_cmd::init(), ha_archive::init_archive_writer(), init_ddl_log(), init_dynamic_array(), init_dynamic_string(), init_errmessage(), init_fields(), LOGGER::init_log_tables(), init_param_array(), QUICK_ROR_INTERSECT_SELECT::init_ror_merged_scan(), QUICK_RANGE_SELECT::init_ror_merged_scan(), Item_sum::init_sum_func_check(), ha_tina::init_tina_writer(), init_tmpdir(), sp_rcontext::init_var_items(), sp_rcontext::init_var_table(), InitInstance(), InList(), innobase_start_or_create_for_mysql(), insert_dynamic(), insert_fields(), insert_precheck(), insert_view_fields(), NTService::Install(), WindowsService::Install(), is_acl_user(), is_binary_compatible(), handler::is_fatal_error(), ha_partition::is_fatal_error(), ha_ndbcluster::is_fatal_error(), is_key_scan_ror(), sp_head::is_not_allowed_in_function(), Instance_options::is_option_im_specific(), Instance::is_running(), SEL_ARG::is_singlepoint(), partition_info::is_sub_partitioned(), NTService::is_super_user(), Instance_map::is_there_active_instance(), NTService::IsService(), Item_name_const::Item_name_const(), Item_null::Item_null(), Item_splocal::Item_splocal(), Item_type_holder::join_types(), kill_server(), Options::load(), Event_scheduler::load_events_from_db(), lock_and_wait_for_table_name(), lock_check_trx_id_sanity(), lock_clust_rec_modify_check_and_lock(), Event_scheduler::lock_data(), lock_deadlock_occurs(), lock_deadlock_recursive(), lock_get_wait(), lock_has_to_wait(), lock_is_on_table(), lock_is_table_exclusive(), lock_mode_compatible(), lock_mode_stronger_or_eq(), lock_print_info_all_transactions(), lock_rec_add_to_queue(), lock_rec_enqueue_waiting(), lock_rec_expl_exist_on_page(), lock_rec_get_gap(), lock_rec_get_insert_intention(), lock_rec_get_next(), lock_rec_get_rec_not_gap(), lock_rec_has_to_wait(), lock_rec_has_to_wait_in_queue(), lock_rec_insert_check_and_lock(), lock_rec_lock_fast(), lock_rec_queue_validate(), lock_rec_set_nth_bit(), lock_rec_validate_page(), lock_sec_rec_cons_read_sees(), lock_sec_rec_modify_check_and_lock(), lock_sec_rec_some_has_impl_off_kernel(), lock_table_enqueue_waiting(), lock_table_has_to_wait_in_queue(), lock_table_names(), lock_table_other_has_incompatible(), lock_table_print(), lock_table_queue_validate(), lock_tables(), lock_validate(), log(), log_block_checksum_is_ok_or_old_format(), log_buffer_flush_to_disk(), log_calc_max_ages(), log_check_log_recs(), log_checkpoint(), log_checkpoint_margin(), log_close(), log_flush_margin(), log_fsp_current_free_limit_set_and_checkpoint(), Log_to_csv_event_handler::log_general(), log_group_check_flush_completion(), log_group_file_header_flush(), log_group_read_checkpoint_info(), log_group_read_log_seg(), log_group_write_buf(), log_init(), log_make_checkpoint_at(), log_peek_lsn(), log_preflush_pool_modified_pages(), log_reserve_and_open(), Log_to_csv_event_handler::log_slow(), log_write_up_to(), logs_empty_and_mark_files_at_shutdown(), main(), make_empty_rec(), make_simple_join(), JOIN::make_sum_func_list(), make_unique_view_field_name(), manager(), BackupRestore::map_in_frm(), BackupRestore::map_nodegroups(), mark_common_columns(), mem_area_free(), mem_heap_check(), mem_heap_create_block(), mem_heap_print(), mem_heap_printf_low(), mem_heap_validate(), mem_heap_validate_or_print(), mem_init(), mem_pool_create(), mem_pool_fill_free_list(), mem_pool_validate(), mem_print_info(), sp_head::merge_table_list(), mi_test_if_sort_rep(), mlog_parse_index(), mlog_parse_nbytes(), mlog_parse_string(), modify_defaults_file(), multi_delete_precheck(), multi_delete_set_locks_and_link_aux_tables(), multi_update_precheck(), mutex_validate(), my_hash_insert(), my_parse_charset_xml(), my_read_charset_file(), my_real_read(), my_tz_check_n_skip_implicit_tables(), mysql_admin_table(), mysql_alter_db(), mysql_alter_table(), mysql_alter_tablespace(), mysql_assign_to_keycache(), mysql_checksum_table(), mysql_client_binlog_statement(), mysql_copy_create_list(), mysql_copy_key_list(), mysql_create_db(), mysql_create_like_table(), mysql_create_or_drop_trigger(), mysql_create_table(), mysql_create_table_internal(), mysql_create_user(), mysql_create_view(), mysql_delete(), mysql_derived_filling(), mysql_derived_prepare(), mysql_discard_or_import_tablespace(), mysql_do(), mysql_drop_user(), mysql_drop_view(), mysql_execute_command(), mysql_free_result(), mysql_grant(), mysql_ha_close(), mysql_ha_flush(), mysql_ha_open(), mysql_handle_derived(), mysql_init(), mysql_init_variables(), mysql_insert(), mysql_insert_select_prepare(), mysql_insert_select_prepare_tester(), mysql_install_plugin(), mysql_load(), mysql_lock_abort_for_thread(), mysql_lock_tables(), mysql_make_view(), mysql_manager_connect(), mysql_manager_submit(), mysql_multi_delete_prepare(), mysql_multi_update(), mysql_multi_update_prepare(), mysql_new_select(), mysql_prepare_delete(), mysql_prepare_insert(), mysql_prepare_insert_check_table(), mysql_prepare_update(), mysql_read_default_options(), mysql_rename_db(), mysql_rename_user(), mysql_rename_view(), mysql_revoke_all(), mysql_rm_db(), mysql_rm_table(), mysql_rm_table_part2(), mysql_routine_grant(), mysql_select(), mysql_show_grants(), mysql_stmt_attr_get(), mysql_stmt_attr_set(), mysql_stmt_bind_param(), mysql_stmt_close(), mysql_table_grant(), mysql_test_create_table(), mysql_test_delete(), mysql_test_do_fields(), mysql_test_insert(), mysql_test_multidelete(), mysql_test_multiupdate(), mysql_test_select(), mysql_test_set_fields(), mysql_truncate(), mysql_uninstall_plugin(), mysql_update(), mysql_write_frm(), mysqld_help(), mysqld_show_authors(), mysqld_show_column_types(), mysqld_show_contributors(), mysqld_show_create(), mysqld_show_create_db(), mysqld_show_privileges(), mysqld_show_storage_engines(), mysqld_show_warnings(), ndb_thread_wrapper(), String::needs_conversion(), Item_func_not_all::neg_transformer(), net_clear(), net_real_write(), network_init(), QUICK_GROUP_MIN_MAX_SELECT::next_min_in_range(), QUICK_GROUP_MIN_MAX_SELECT::next_prefix(), subselect_union_engine::no_tables(), Materialized_cursor::open(), open_and_lock_tables(), MYSQL_BIN_LOG::open_index_file(), Log_to_csv_event_handler::open_log_table(), open_normal_and_derived_tables(), open_or_create_data_files(), open_or_create_log_file(), open_table(), open_table_from_share(), open_unireg_entry(), ha_tina::open_update_temp_file_if_needed(), opt_check_exp_determined_before(), opt_classify_cols(), opt_find_all_cols(), opt_find_copy_cols(), opt_is_arg(), opt_search_plan(), opt_search_plan_for_table(), opt_sum_query(), JOIN::optimize(), os_aio(), os_aio_simulated_handle(), os_aio_simulated_put_read_threads_to_sleep(), os_aio_validate(), os_awe_allocate_physical_mem(), os_awe_enable_lock_pages_in_mem(), os_awe_map_physical_mem_to_window(), os_event_create(), os_event_set(), os_event_wait(), os_file_close(), os_file_close_no_error_handling(), os_file_create(), os_file_create_directory(), os_file_create_simple(), os_file_create_simple_no_error_handling(), os_file_create_subdirs_if_needed(), os_file_delete(), os_file_delete_if_exists(), os_file_flush(), os_file_get_size(), os_file_get_status(), os_file_handle_error(), os_file_handle_error_no_exit(), os_file_pwrite(), os_file_read(), os_file_read_no_error_handling(), os_file_rename(), os_file_set_size(), os_file_status(), os_file_write(), os_process_set_priority_boost(), os_thread_eq(), page_cur_parse_insert_rec(), page_dir_find_owner_slot(), page_dir_slot_check(), page_parse_copy_rec_list_to_created_page(), page_rec_validate(), page_simple_validate(), page_validate(), pars_check_aggregate(), pars_create_index(), pars_create_table(), pars_cursor_declaration(), pars_function_declaration(), pars_info_create(), pars_order_by(), pars_procedure_definition(), pars_process_assign_list(), pars_resolve_exp_columns(), pars_resolve_exp_variables_and_types(), pars_retrieve_table_def(), pars_select_statement(), pars_update_statement(), pars_variable_declaration(), File_parser::parse(), Unset_option::parse_args(), Set_option::parse_args(), Create_instance::parse_args(), parse_input_file(), parse_option_value(), NTService::PauseService(), plugin_add(), plugin_foreach(), plugin_is_ready(), st_table_list::prep_check_option(), st_table_list::prep_where(), JOIN::prepare(), Prepared_statement::prepare(), st_table_list::prepare_security(), st_table_list::prepare_view_securety_context(), print_quick(), print_table_data(), process_event(), Unset_option::process_option(), Table_triggers_list::process_triggers(), Handle_old_incorrect_trigger_table_hook::process_unknown_string(), Handle_old_incorrect_sql_modes_hook::process_unknown_string(), sp_head::propagate_attributes(), push_new_name_resolution_context(), que_fork_all_thrs_in_state(), que_graph_try_free(), que_thr_dec_refer_count(), que_thr_move_to_run_state(), que_thr_move_to_run_state_for_mysql(), que_thr_stop(), que_thr_stop_for_mysql(), que_thr_stop_for_mysql_no_error(), read_ddl_log_entry(), read_ddl_log_file_entry(), read_ddl_log_header(), read_escaped_string(), read_fixed_length(), read_meta_file(), ha_archive::read_meta_file(), read_sep_field(), read_view_oldest_copy_or_open_new(), String::real_alloc(), ha_archive::real_write_row(), String::realloc(), rec_convert_dtuple_to_rec_new(), rec_convert_dtuple_to_rec_old(), rec_print_new(), rec_set_field_extern_bits(), rec_set_nth_field_sql_null(), rec_validate(), rec_validate_old(), Events::reconstruct_interval_expression(), recreate_table(), recv_apply_hashed_log_recs(), recv_apply_log_recs_for_backup(), recv_check_cp_is_consistent(), recv_group_scan_log_recs(), recv_parse_log_rec(), recv_parse_log_recs(), recv_parse_or_apply_log_rec_body(), recv_read_cp_info_for_backup(), recv_recover_page(), recv_recovery_from_checkpoint_finish(), recv_recovery_from_checkpoint_start(), recv_reset_logs(), recv_scan_log_recs(), recv_sys_add_to_parsing_buf(), recv_sys_init(), Item_maxmin_subselect::register_value(), reload_acl_and_cache(), NTService::Remove(), WindowsService::Remove(), remove_nonrange_trees(), User_map::remove_user(), reopen_name_locked_table(), String::replace(), replace_column_table(), replace_routine_table(), replace_table_table(), replace_user_table(), WindowsService::ReportStatus(), Guardian_thread::request_shutdown(), require_quotes(), String::reserve(), QUICK_ROR_UNION_SELECT::reset(), QUICK_ROR_INTERSECT_SELECT::reset(), reset_stmt_handle(), resolve_ref_in_select_and_group(), Item_func_makedate::result_as_longlong(), Item_datetime_typecast::result_as_longlong(), Item_time_typecast::result_as_longlong(), Item_date_typecast::result_as_longlong(), Item_func_sec_to_time::result_as_longlong(), Item_func_curtime::result_as_longlong(), Item_date_func::result_as_longlong(), Item_date::result_as_longlong(), ha_archive::rnd_init(), ror_intersect_add(), row_add_table_to_background_drop_list(), row_build_row_ref_in_tuple(), row_create_index_for_mysql(), row_create_prebuilt(), row_create_table_for_mysql(), row_create_update_node_for_mysql(), row_discard_tablespace_for_mysql(), row_drop_database_for_mysql(), row_drop_table_for_mysql(), row_drop_tables_for_mysql_in_background(), row_get_background_drop_list_len_low(), row_import_tablespace_for_mysql(), row_ins_cascade_ancestor_updates_table(), row_ins_check_foreign_constraints(), row_ins_foreign_check_on_constraint(), row_ins_foreign_report_add_err(), row_ins_foreign_report_err(), row_ins_set_detailed(), row_insert_for_mysql(), row_mysql_handle_errors(), row_prebuilt_free(), row_purge_parse_undo_rec(), row_purge_remove_clust_if_poss_low(), row_purge_remove_sec_if_poss_low(), row_rename_table_for_mysql(), row_scan_and_check_index(), row_search_check_if_query_cache_permitted(), row_search_for_mysql(), row_search_index_entry(), row_search_on_row_ref(), row_sel(), row_sel_convert_mysql_key_to_innobase(), row_sel_fetch_columns(), row_sel_open_pcur(), row_sel_restore_pcur_pos(), row_sel_sec_rec_is_for_clust_rec(), row_sel_test_end_conds(), row_sel_test_other_conds(), row_sel_try_search_shortcut(), row_table_add_foreign_constraints(), row_table_got_default_clust_index(), row_truncate_table_for_mysql(), row_undo(), row_undo_ins_remove_clust_rec(), row_undo_ins_remove_sec_low(), row_undo_mod_del_mark_or_remove_sec_low(), row_undo_search_clust_to_pcur(), row_upd_changes_field_size_or_external(), row_upd_changes_first_fields_binary(), row_upd_changes_ord_field_binary(), row_upd_changes_some_index_ord_field_binary(), row_upd_check_references_constraints(), row_upd_clust_rec_by_insert(), row_upd_del_mark_clust_rec(), row_upd_index_is_referenced(), row_upd_sec_index_entry(), row_update_for_mysql(), row_update_prebuilt_trx(), row_vers_impl_x_locked_off_kernel(), row_vers_must_preserve_del_marked(), row_vers_old_has_index_entry(), Event_scheduler::run(), Mysql_connection_thread::run(), Guardian_thread::run(), rw_lock_is_locked(), rw_lock_s_lock_spin(), rw_lock_validate(), rw_lock_x_lock_low(), safe_update_on_fly(), Item_hex_string::save_in_field(), BackupRestore::search_replace(), NTService::SeekStatus(), sel_restore_position_for_mysql(), sel_trees_can_be_ored(), select_like_stmt_test(), select_like_stmt_test_with_open_n_lock(), Select_fetch_into_spvars::send_data(), Select_materialize::send_fields(), NTService::ServiceMain(), sess_try_close(), String::set(), sp_rcontext::set_case_expr(), Instance::set_crash_flag_n_wake_all(), set_dynamic(), Load_log_event::set_fname_outside_temp_buf(), st_table_list::set_insert_values(), String::set_int(), Item_param::set_longdata(), set_new_item_local_context(), Item_user_var_as_out_param::set_null_value(), Instance_options::set_option(), Item_ref::set_properties(), String::set_real(), sp_rcontext::set_return_value(), set_routine_security_ctx(), Item_param::set_str(), set_user(), Field_new_decimal::set_value_on_overflow(), Item_func_group_concat::setup(), Item_sum_count_distinct::setup(), Item_sum_distinct::setup(), setup_copy_fields(), setup_fields(), setup_group(), setup_natural_join_row_types(), setup_one_fetch_function(), setup_sum_funcs(), setup_tables_and_check_access(), st_table_list::setup_underlying(), sp_head::show_create_function(), sp_head::show_create_procedure(), show_status_array(), showstat_handlerton(), LOGGER::slow_log_print(), Item_equal::sort(), sp_cache_routines_and_add_tables_aux(), sp_change_security_context(), sp_cond_check(), sp_drop_db_routines(), sp_eval_expr(), sp_exist_routines(), sp_grant_privileges(), sp_lex_keeper::sp_lex_keeper(), Item_func_sp::sp_result_field(), Item_func_make_set::split_sum_func(), Item_row::split_sum_func(), Item_func::split_sum_func(), Item_cond::split_sum_func(), sql_create_definition_file(), srv_conc_enter_innodb(), srv_conc_force_enter_innodb(), srv_conc_force_exit_innodb(), srv_error_monitor_thread(), srv_init(), srv_lock_timeout_and_monitor_thread(), srv_master_thread(), srv_parse_data_file_paths_and_sizes(), srv_parse_log_group_home_dirs(), srv_suspend_mysql_thread(), srv_suspend_thread(), srv_table_reserve_slot(), srv_table_reserve_slot_for_mysql(), st_alter_tablespace::st_alter_tablespace(), Event_scheduler::start(), ha_archive::start_bulk_insert(), Event_scheduler::start_suspended(), MYSQL_BIN_LOG::start_union_events(), NTService::StartService(), stat_print(), stmt_fetch_init(), Event_scheduler::stop_all_running_events(), Field_str::store(), Field_date::store(), store_create_info(), Field_bit::store_decimal(), store_key_column_usage(), ha_archive::store_lock(), store_natural_using_join_columns(), store_schema_partitions_record(), Field_time::store_time(), store_top_level_join_columns(), Field_bit::str_needs_quotes(), Field_str::str_needs_quotes(), sub_select_cache(), subst_spvars(), sym_tab_add_bound_lit(), sym_tab_add_int_lit(), sym_tab_add_null_lit(), sym_tab_add_str_lit(), sync_arr_cell_can_wake_up(), sync_arr_wake_threads_if_sema_free(), sync_array_print_long_waits(), sync_array_signal_object(), sync_array_wait_event(), sync_ddl_log(), sync_init(), sync_thread_levels_contain(), sync_thread_levels_empty_gen(), sync_thread_reset_level(), table_check_intact(), test_bug10760(), test_bug12243(), test_bug6096(), test_compare_operators(), test_count_bits_set(), test_decimal_bug(), test_double_compare(), test_explain_bug(), test_flip_bit(), test_frm_bug(), test_func_fields(), test_get_all_bits(), test_get_first_bit(), test_get_next_bit(), test_if_hard_path(), test_if_string_in_list(), test_insert(), test_long_data(), test_long_data_bin(), test_long_data_str(), test_long_data_str1(), test_nstmts(), test_opt_reconnect(), test_prefix(), test_prepare(), test_prepare_grant(), test_prepare_resultset(), SQL_SELECT::test_quick_select(), test_select(), test_select_direct(), test_select_prepare(), test_select_show(), test_set_get_clear_bit(), test_set_option(), test_set_variable(), test_simple_delete(), test_simple_update(), test_sshort_bug(), test_stmt_close(), test_tran_bdb(), test_tran_innodb(), test_truncation(), test_truncation_option(), test_update(), test_ushort_bug(), TransporterFacade::threadMainReceive(), BackupRestore::translate_frm(), trie_insert(), trx_commit_complete_for_mysql(), trx_commit_off_kernel(), trx_create(), trx_doublewrite_init(), trx_doublewrite_page_inside(), trx_end_signal_handling(), trx_in_trx_list(), trx_prepare_off_kernel(), trx_print(), trx_purge_arr_store_info(), trx_purge_choose_next_log(), trx_purge_free_segment(), trx_purge_truncate_if_arr_empty(), trx_purge_update_undo_must_exist(), trx_roll_pop_top_rec(), trx_roll_pop_top_rec_of_trx(), trx_rollback_last_sql_stat_for_mysql(), trx_rollback_or_clean_all_without_sess(), trx_rollback_to_savepoint_for_mysql(), trx_sig_is_compatible(), trx_sig_start_handle(), trx_start_low(), trx_sys_create_doublewrite_buf(), trx_sys_doublewrite_init_or_restore_pages(), trx_sys_mark_upgraded_to_multiple_tablespaces(), trx_undo_add_page(), trx_undo_arr_store_info(), trx_undo_header_create(), trx_undo_mem_create(), trx_undo_mem_create_at_db_start(), trx_undo_mem_init_for_reuse(), trx_undo_page_report_modify(), trx_undo_rec_get_pars(), trx_undo_report_row_operation(), trx_undo_seg_create(), trx_undo_set_state_at_prepare(), trx_undo_truncate_start(), trx_undo_update_rec_get_update(), Field::type_can_have_key_part(), tz_load_from_open_tables(), PollGuard::unlock_and_signal(), upd_ext_vec_contains(), handler::update_auto_increment(), Event_scheduler::update_event(), update_precheck(), update_ref_and_keys(), ut_dbg_assertion_failed(), UT_LIST_BASE_NODE_T(), ut_malloc(), ut_print_namel(), ut_test_malloc(), Item_hex_string::val_decimal(), Item_func_last_insert_id::val_int(), Item_func_des_encrypt::val_str(), view_store_create_info(), wait_for_tables(), wait_while_table_is_used(), MYSQL_BIN_LOG::write(), MYSQL_QUERY_LOG::write(), Show_instances::write_data(), write_ddl_log_entry(), write_ddl_log_file_entry(), write_ddl_log_header(), write_escaped_string(), write_execute_ddl_log_entry(), write_parameter(), write_record(), xdes_find_bit(), xdes_find_bit_downward(), xdes_is_free(), xdes_is_full(), and yyparse().
| #define uint2korr | ( | A | ) |
| #define uint3korr | ( | A | ) |
| #define uint4korr | ( | A | ) |
| #define uint5korr | ( | A | ) |
| #define uint6korr | ( | A | ) |
| #define uint8korr | ( | A | ) |
Value:
((ulonglong)(((uint32) ((uchar) (A)[0])) +\ (((uint32) ((uchar) (A)[1])) << 8) +\ (((uint32) ((uchar) (A)[2])) << 16) +\ (((uint32) ((uchar) (A)[3])) << 24)) +\ (((ulonglong) (((uint32) ((uchar) (A)[4])) +\ (((uint32) ((uchar) (A)[5])) << 8) +\ (((uint32) ((uchar) (A)[6])) << 16) +\ (((uint32) ((uchar) (A)[7])) << 24))) <<\ 32))
Definition at line 1210 of file my_global.h.
| #define UINT_MAX16 0xFFFF |
Definition at line 786 of file my_global.h.
Referenced by Item_sum::create_tmp_field(), create_tmp_field_from_field(), create_tmp_field_from_item(), fetch_long_with_conversion(), fetch_string_with_conversion(), field_str::get_opt_type(), init_param_array(), and Field_short::store().
| #define UINT_MAX24 0x00FFFFFF |
| #define UINT_MAX32 0xFFFFFFFFL |
Definition at line 780 of file my_global.h.
Referenced by Item_func::count_real_length(), create_frm(), fetch_long_with_conversion(), fetch_string_with_conversion(), field_str::get_opt_type(), and Field_long::store().
| #define UINT_MAX8 0xFF |
Definition at line 789 of file my_global.h.
Referenced by fetch_long_with_conversion(), and fetch_string_with_conversion().
Definition at line 1007 of file my_global.h.
| #define ulong_to_double | ( | X | ) | ((double) (ulong) (X)) |
Definition at line 745 of file my_global.h.
| #define ulongget | ( | V, | |||
| M | ) | do { V = uint4korr(M); } while(0) |
Definition at line 1361 of file my_global.h.
Definition at line 737 of file my_global.h.
Referenced by field_ulonglong::avg(), field_str::avg(), chk_size(), dispatch_command(), Hybrid_type_traits::div(), fetch_datetime_with_conversion(), fetch_float_with_conversion(), fetch_long_with_conversion(), get_sweep_read_cost(), handler::scan_time(), ha_myisammrg::scan_time(), field_ulonglong::std(), field_longlong::std(), field_real::std(), Field_double::store(), Field_float::store(), test_bug3035(), Item_func_sysdate_local::val_real(), Item_sum_hybrid::val_real(), Item_sum_variance::val_real(), Item_sum_avg::val_real(), Item_uint::val_real(), and Item_param::val_real().
Definition at line 110 of file my_global.h.
Referenced by Dblqh::abortCommonLab(), add_key_fields(), NdbEventBuffer::alloc_data(), Tup_varsize_page::alloc_record(), Dbtup::alloc_var_rec(), Dbtup::alloc_var_rowid(), Discrete_intervals_list::append(), assign_new_table_id(), begin_trans(), bin2decimal(), binlog_rollback(), binlog_savepoint_rollback(), sys_var::check_set(), Suma::check_switchover(), decimal2bin(), decimal2longlong(), decimal2string(), decimal2ulonglong(), decimal_mul(), decimal_round(), Dbtup::disk_page_prealloc_callback(), Dbtup::disk_page_set_dirty(), Dbtup::disk_page_unmap_callback(), do_add(), do_div_mod(), do_sub(), end_active_trans(), end_trans(), Dblqh::execLQHKEYREQ(), NdbEventBuffer::execSUB_GCP_COMPLETE_REP(), Dbtup::execTUP_COMMITREQ(), Dblqh::execTUPKEYCONF(), Dblqh::execTUPKEYREF(), Dbtup::execTUPKEYREQ(), sp_instr_stmt::execute(), find_transition_type(), Suma::get_buffer_ptr(), Dbtup::get_empty_var_page(), get_mm_leaf(), Dbacc::getElement(), RestoreLogIterator::getNextLogEntry(), NdbDictionaryImpl::getTable(), handler::ha_delete_row(), handler::ha_update_row(), handler::ha_write_row(), handle_select(), Dbtup::handle_size_change_after_update(), Dbtc::handle_special_hash(), Dbtup::handleInsertReq(), Dbtup::handleUpdateReq(), NdbEventBuffer::insertDataL(), internal_str2dec(), Log_to_csv_event_handler::log_general(), Log_to_csv_event_handler::log_slow(), log_slow_statement(), Dblqh::logLqhkeyrefLab(), my_b_safe_tell(), my_net_write(), mysql_checksum_table(), mysql_execute_command(), Dblqh::next_scanconf_load_diskpage(), Dbtup::nr_delete(), open_unireg_entry(), Dblqh::packLqhkeyreqLab(), NdbEventBuffer::pollEvents(), NdbOperation::prepareSend(), prev_insert_id(), Dbtup::realloc_var_part(), NdbEventOperationImpl::receive_event(), Suma::release_gci(), Suma::seize_page(), Dbtc::sendlqhkeyreq(), Dbtup::shrink_tuple(), start_waiting_global_read_lock(), Ndb::startTransactionLocal(), Dbtc::tckeyreq050Lab(), Dblqh::tupkeyConfLab(), ull2dec(), handler::update_auto_increment(), Item_func_uuid::val_str(), wait_if_global_read_lock(), SimulatedBlock::xfrm_attr(), and SimulatedBlock::xfrm_key().
| #define UNSINT16 |
Definition at line 671 of file my_global.h.
| #define UNSINT32 |
Definition at line 672 of file my_global.h.
| #define UNSINT8 |
Definition at line 670 of file my_global.h.
| #define USE_BMOVE512 1 |
Definition at line 474 of file my_global.h.
| #define USE_MYFUNC 1 |
Definition at line 468 of file my_global.h.
| #define USE_REGEX 1 |
Definition at line 472 of file my_global.h.
| #define ushortget | ( | V, | |||
| M | ) | do { V = uint2korr(M); } while(0) |
Definition at line 1358 of file my_global.h.
| #define VOID | ( | X | ) | (X) |
Definition at line 497 of file my_global.h.
Referenced by _mi_get_block_info(), _mi_pack_get_block_info(), _mi_print_key(), _mi_read_dynamic_record(), _mi_read_rnd_dynamic_record(), _mi_read_rnd_static_record(), _mi_readinfo(), _mi_test_if_changed(), _my_b_read(), _my_b_seq_read(), _my_b_write(), _myisam_log(), _myisam_log_command(), _myisam_log_record(), abort_and_upgrade_lock(), acl_check_host(), acl_get(), acl_getroot(), acl_getroot_no_password(), acl_insert_db(), acl_insert_user(), acl_load(), acl_reload(), add_ft_keys(), add_hostname(), add_key_part(), append_identifier(), archive_db_done(), archive_db_init(), ha_myisam::backup(), broadcast_refresh(), build_table_filename(), calc_sum_of_all_status(), change_password(), check_user(), check_view_insertability(), close_cached_tables(), close_open_tables_and_downgrade(), close_server_sock(), close_some_file(), close_thread_table(), close_thread_tables(), compress(), create_frm(), create_table_from_items(), LOGGER::deactivate_log_handler(), delayed_insert::delayed_insert(), descript(), directory_file_name(), dispatch_command(), display_table_locks(), do_select(), drop_db(), drop_locked_tables(), dummy_functions(), dump_all_tables_in_db(), dump_all_views_in_db(), dump_events_for_db(), dump_routines_for_db(), dump_selected_tables(), end_send_group(), end_write_group(), event_worker_thread(), examine_log(), example_init_func(), Event_timed::execute(), execute_ddl_log_action(), file_info_free(), filecopy(), fill_schema_processlist(), find_files(), find_record_with_key(), Log_to_csv_event_handler::flush(), flush_error_log(), ha_archive::free_share(), FT_SELECT::FT_SELECT(), get_form_pos(), get_options(), ha_archive::get_share(), get_table_share(), Transparent_file::get_value(), ha_create_table(), ha_create_table_from_engine(), handle_bootstrap(), handle_connections_sockets(), handle_delayed_insert(), handle_local_infile(), handle_one_connection(), hash_delete(), hp_clear(), hp_clear_keys(), hp_free(), inc_host_errors(), ha_archive::info(), Transparent_file::init_buff(), init_check_host(), init_ddl_log(), init_event_thread(), init_read_record(), init_replace(), intern_close_table(), ip_to_hostname(), is_acl_user(), Event_timed::is_running(), kill_delayed_threads(), kill_one_thread(), list_open_tables(), lock_and_wait_for_table_name(), main(), make_new_entry(), map_file(), mapped_files::mapped_files(), merge_buffers(), mi_check_print_error(), mi_check_print_info(), mi_check_print_warning(), mi_close(), mi_delete_all_rows(), mi_is_changed(), mi_lock_database(), mi_open(), mi_panic(), mi_repair(), mi_rsame(), mi_sort_index(), mi_status(), my_append(), my_b_seek(), my_chsize(), my_clock(), my_copy(), my_copystat(), my_dir(), my_fwrite(), my_getwd(), my_load_path(), my_lock(), my_path(), my_pwrite(), my_tz_find(), my_tz_free(), my_tz_init(), my_write(), myisamchk(), myrg_create(), myrg_open(), mysql_alter_db(), mysql_alter_table(), mysql_create_db(), mysql_create_frm(), mysql_create_or_drop_trigger(), mysql_create_table_internal(), mysql_create_user(), mysql_drop_user(), mysql_drop_view(), mysql_grant(), mysql_ha_close(), mysql_ha_flush(), mysql_print_status(), mysql_rename_tables(), mysql_rename_user(), mysql_revoke_all(), mysql_rm_db(), mysql_rm_known_files(), mysql_rm_table(), mysql_rm_table_part2_with_lock(), mysql_rm_tmp_tables(), mysql_show_grants(), mysql_truncate(), mysql_unlock_tables(), mysql_wait_completed_table(), mysql_write_frm(), mysqld_list_processes(), Item_cond::neg_arguments(), net_printf_error(), net_send_error_packet(), ha_myisam::open(), open_binary_frm(), open_isam_file(), open_isam_files(), open_table(), parse_text_line(), prepare_for_restore(), Item_case_expr::print(), print_buffer_to_file(), print_cached_tables(), print_error(), print_version(), push_locks_into_array(), rea_create_table(), read_ddl_log_header(), read_meta_file(), ha_archive::read_meta_file(), read_texts(), readfrm(), recreate_table(), release_ddl_log(), remove_eq_conds(), remove_table_from_cache(), rename_file_ext(), reopen_table(), reopen_tables(), reset_host_errors(), sp_lex_keeper::reset_lex_and_exec_core(), ha_myisam::restore(), run_test(), save_state(), send_eof(), send_ok(), String::set(), String::set_real(), sort_insert_key(), sort_write_record(), sp_grant_privileges(), sp_pcontext::sp_pcontext(), sp_revoke_privileges(), Event_timed::spawn_now(), Event_timed::spawn_thread_finish(), Event_scheduler::stop_all_running_events(), TEST_filesort(), TEST_join(), tina_init_func(), unireg_init(), unlink_open_table(), unmap_file(), update_frm_version(), usage(), Item_func_des_decrypt::val_str(), Item_func_des_encrypt::val_str(), wait_while_table_is_used(), Event_scheduler::workers_count(), MYSQL_BIN_LOG::write(), write_bits(), write_ddl_log_entry(), write_ddl_log_header(), write_eof_packet(), write_execute_ddl_log_entry(), write_field_info(), write_header(), write_huff_tree(), write_meta_file(), ha_archive::write_meta_file(), writefrm(), delayed_insert::~delayed_insert(), and mapped_files::~mapped_files().
| typedef char bool |
Definition at line 987 of file my_global.h.
| typedef char byte |
Definition at line 983 of file my_global.h.
| typedef int File |
Definition at line 595 of file my_global.h.
| typedef char* gptr |
Definition at line 867 of file my_global.h.
| typedef short int15 |
Definition at line 978 of file my_global.h.
| typedef short int16 |
Definition at line 880 of file my_global.h.
Definition at line 916 of file my_global.h.
Definition at line 977 of file my_global.h.
| typedef signed char int8 |
Definition at line 874 of file my_global.h.
| typedef long longlong |
Definition at line 912 of file my_global.h.
| typedef char my_bool |
Definition at line 985 of file my_global.h.
| typedef unsigned long my_off_t |
Definition at line 949 of file my_global.h.
| typedef long long my_ptrdiff_t |
Definition at line 826 of file my_global.h.
| typedef unsigned long my_size_t |
Definition at line 832 of file my_global.h.
| typedef int my_socket |
Definition at line 597 of file my_global.h.
| typedef char* my_string |
Definition at line 979 of file my_global.h.
| typedef unsigned long long my_ulonglong |
Definition at line 927 of file my_global.h.
| typedef int myf |
Definition at line 981 of file my_global.h.
Definition at line 953 of file my_global.h.
| typedef int pbool |
Definition at line 614 of file my_global.h.
| typedef double pfloat |
Definition at line 616 of file my_global.h.
| typedef int pshort |
Definition at line 615 of file my_global.h.
Definition at line 613 of file my_global.h.
| typedef int(*) qsort_cmp2(void *, const void *, const void *) |
Definition at line 620 of file my_global.h.
| typedef unsigned long size_s |
Definition at line 980 of file my_global.h.
| typedef SOCKET_SIZE_TYPE size_socket |
Definition at line 626 of file my_global.h.
| typedef unsigned char uchar |
Definition at line 870 of file my_global.h.
| typedef unsigned int uint |
Definition at line 522 of file my_global.h.
| typedef unsigned short uint16 |
Definition at line 883 of file my_global.h.
Definition at line 919 of file my_global.h.
| typedef unsigned char uint8 |
Definition at line 877 of file my_global.h.
| typedef unsigned long ulong |
Definition at line 904 of file my_global.h.
| typedef unsigned long ulonglong |
Definition at line 911 of file my_global.h.
| typedef unsigned short ushort |
Definition at line 523 of file my_global.h.
| C_MODE_END typedef int pchar |
| C_MODE_START typedef int(*) qsort_cmp(const void *, const void *) |
Definition at line 619 of file my_global.h.
Referenced by acl_insert_db(), acl_insert_user(), acl_load(), display_table_locks(), fakebigcodes(), flush_cached_blocks(), get_best_covering_ror_intersect(), get_best_ror_intersect(), my_dir(), ha_tina::rnd_end(), and Dynamic_array< Elem >::sort().
| C_MODE_START typedef void(*) sig_return() |
Definition at line 603 of file my_global.h.
1.4.7

