#include <my_global.h>#include <ctype.h>#include <string.h>#include <unistd.h>Include dependency graph for conf_to_src.c:

Go to the source code of this file.
Defines | |
| #define | CHARSETS_SUBDIR "sql/share/charsets" |
| #define | CTYPE_TABLE_SIZE 257 |
| #define | TO_LOWER_TABLE_SIZE 256 |
| #define | TO_UPPER_TABLE_SIZE 256 |
| #define | SORT_ORDER_TABLE_SIZE 256 |
| #define | ROW_LEN 16 |
Functions | |
| void | print_arrays_for (char *set) |
| int | main (int argc, char **argv) |
| void | print_array (FILE *f, const char *set, const char *name, int n) |
Variables | |
| char * | prog |
| char | buf [1024] |
| char * | p |
| char * | endptr |
| #define CHARSETS_SUBDIR "sql/share/charsets" |
| #define CTYPE_TABLE_SIZE 257 |
| #define ROW_LEN 16 |
| #define SORT_ORDER_TABLE_SIZE 256 |
| #define TO_LOWER_TABLE_SIZE 256 |
| #define TO_UPPER_TABLE_SIZE 256 |
| int main | ( | int | argc, | |
| char ** | argv | |||
| ) |
Definition at line 41 of file conf_to_src.c.
References CHARSETS_SUBDIR, exit, print_arrays_for(), and prog.
00042 { 00043 prog = *argv; 00044 00045 if (argc < 2) { 00046 fprintf(stderr, "usage: %s source-dir [charset [, charset]]\n", prog); 00047 exit(EXIT_FAILURE); 00048 } 00049 00050 --argc; ++argv; /* skip program name */ 00051 00052 if (chdir(*argv) != 0) { 00053 fprintf(stderr, "%s: can't cd to %s\n", prog, *argv); 00054 exit(EXIT_FAILURE); 00055 } 00056 --argc; ++argv; 00057 00058 if (chdir(CHARSETS_SUBDIR) != 0) { 00059 fprintf(stderr, "%s: can't cd to %s\n", prog, CHARSETS_SUBDIR); 00060 exit(EXIT_FAILURE); 00061 } 00062 00063 while (argc--) 00064 print_arrays_for(*argv++); 00065 00066 exit(EXIT_SUCCESS); 00067 }
Here is the call graph for this function:

| void print_array | ( | FILE * | f, | |
| const char * | set, | |||
| const char * | name, | |||
| int | n | |||
| ) |
Definition at line 70 of file conf_to_src.c.
References buf, endptr, NULL, p, ROW_LEN, and strtol().
Referenced by main(), and print_arrays_for().
00071 { 00072 int i; 00073 char val[100]; 00074 00075 printf("uchar %s_%s[] = {\n", name, set); 00076 00077 p = buf; 00078 *buf = '\0'; 00079 for (i = 0; i < n; ++i) 00080 { 00081 /* get a word from f */ 00082 endptr = p; 00083 for (;;) 00084 { 00085 while (isspace(*endptr)) 00086 ++endptr; 00087 if (*endptr && *endptr != '#') /* not comment */ 00088 break; 00089 if ((fgets(buf, sizeof(buf), f)) == NULL) 00090 return; /* XXX: break silently */ 00091 endptr = buf; 00092 } 00093 00094 p = val; 00095 while (!isspace(*endptr)) 00096 *p++ = *endptr++; 00097 *p = '\0'; 00098 p = endptr; 00099 00100 /* write the value out */ 00101 00102 if (i == 0 || i % ROW_LEN == n % ROW_LEN) 00103 printf(" "); 00104 00105 printf("%3d", (unsigned char) strtol(val, (char **) NULL, 16)); 00106 00107 if (i < n - 1) 00108 printf(","); 00109 00110 if ((i+1) % ROW_LEN == n % ROW_LEN) 00111 printf("\n"); 00112 } 00113 00114 printf("};\n\n"); 00115 }
Here is the call graph for this function:

Here is the caller graph for this function:

| void print_arrays_for | ( | char * | set | ) |
Definition at line 118 of file conf_to_src.c.
References buf, CTYPE_TABLE_SIZE, exit, f, NULL, print_array(), prog, SORT_ORDER_TABLE_SIZE, TO_LOWER_TABLE_SIZE, and TO_UPPER_TABLE_SIZE.
Referenced by main().
00119 { 00120 FILE *f; 00121 00122 sprintf(buf, "%s.conf", set); 00123 00124 if ((f = fopen(buf, "r")) == NULL) { 00125 fprintf(stderr, "%s: can't read conf file for charset %s\n", prog, set); 00126 exit(EXIT_FAILURE); 00127 } 00128 00129 printf("\ 00130 /* The %s character set. Generated automatically by configure and\n\ 00131 * the %s program\n\ 00132 */\n\n", 00133 set, prog); 00134 00135 /* it would be nice if this used the code in mysys/charset.c, but... */ 00136 print_array(f, set, "ctype", CTYPE_TABLE_SIZE); 00137 print_array(f, set, "to_lower", TO_LOWER_TABLE_SIZE); 00138 print_array(f, set, "to_upper", TO_UPPER_TABLE_SIZE); 00139 print_array(f, set, "sort_order", SORT_ORDER_TABLE_SIZE); 00140 printf("\n"); 00141 00142 fclose(f); 00143 00144 return; 00145 }
Here is the call graph for this function:

Here is the caller graph for this function:

| char buf[1024] |
Definition at line 38 of file conf_to_src.c.
Referenced by _ft_make_key(), _rl_complete_internal(), field_decimal::add(), add_a_connection(), add_field_to_list(), MgmtSrvr::alloc_node_id(), append_info(), AsyncFile::appendReq(), BaseString::appfmt(), BaseString::assfmt(), Rope::assign(), basestring_vsnprintf(), bin2decimal(), btr_copy_externally_stored_field(), btr_page_split_and_insert(), build_completion_hash(), build_insert_string(), build_query_string(), build_table_string(), Configuration::calcSizeAlt(), ha_tina::check(), ha_archive::check(), sys_var_character_set::check(), sys_var_collation::check(), check_completion_type(), Restore::check_file_version(), check_header(), check_max_delayed_threads(), Qmgr::check_readnodes_reply(), check_scramble(), Qmgr::check_startup(), SHM_Transporter::checkConnected(), SocketAuthSimple::client_authenticate(), close_temporary_tables(), compare(), Transporter::connect_client(), SHM_Transporter::connect_client_impl(), SCI_Transporter::connect_client_impl(), TransporterRegistry::connect_server(), SHM_Transporter::connect_server_impl(), SCI_Transporter::connect_server_impl(), sp_head::create(), create_mysqld_command(), create_string(), Dbdict::createEvent_RT_USER_CREATE(), Suma::createSequenceReply(), decimal2double(), decimal2longlong(), decimal2string(), decimal2ulonglong(), decimal_mul(), decimal_round(), decimal_shift(), ClientInterface::defineProcess(), dict_load_columns(), dict_load_fields(), dict_load_indexes(), dict_tree_build_node_ptr(), SHM_Transporter::disconnectImpl(), do_exec(), do_mini_left_shift(), do_mini_right_shift(), do_resolve(), do_test(), AsyncFile::doStart(), drop_db(), dump_all_tablespaces(), dump_remote_log_entries(), MgmtSrvr::dumpState(), BackupRestore::endOfTables(), event_thread_run(), Qmgr::execCM_REGCONF(), Qmgr::execCM_REGREF(), Backup::execCONTINUEB(), Dblqh::execDEBUG_SIG(), Dblqh::execDUMP_STATE_ORD(), Dbdih::execDUMP_STATE_ORD(), Dbdict::execDUMP_STATE_ORD(), Backup::execGET_TABINFO_CONF(), Dbdih::execREAD_NODESCONF(), Dbdih::execSTART_PERMREF(), Ndbcntr::execSTOP_CONF(), Ndbcntr::execSTOP_REQ(), Suma::execSUMA_HANDOVER_CONF(), Ndbcntr::execSYSTEM_ERROR(), Dbtc::execTRIG_ATTRINFO(), Backup::execTRIG_ATTRINFO(), sp_head::execute_function(), CommandInterpreter::executeStartBackup(), Dbdict::execWAIT_GCP_REF(), fatal(), fatal_dict(), fgetln(), fieldflags2str(), fil_extend_space_to_desired_size(), fil_read_flushed_lsn_and_arch_log_no(), fil_write_lsn_and_arch_no_to_file(), Dblqh::findLogfile(), Item_name_const::fix_fields(), fixHostname(), fixNodeId(), flush_error_log(), Event_timed::get_create_event(), get_form_pos(), get_internal_charset(), get_prefix_buf(), get_start_type_string(), ErrorReporter::get_trace_no(), getBlockName(), ConfigRetriever::getConfig(), ArbitCode::getErrText(), SignalCounter::getText(), WOPool::handle_inconsistent_release(), WOPool::handle_invalid_get_ptr(), RWPool::handle_invalid_get_ptr(), WOPool::handle_invalid_release(), RWPool::handle_invalid_release(), handle_local_infile(), ibuf_data_init_for_space(), ibuf_entry_build(), ibuf_new_search_tuple_build(), ibuf_search_tuple_build(), ieee_change_buffer(), inflateSync(), SimulatedBlock::infoEvent(), LocalConfig::init(), ClusterConfiguration::init(), init_replace_regex(), init_server_components(), init_sym_table(), APZJobBuffer::insert(), insert_file(), insert_params_from_vars_with_log(), Backup::insertFileHeader(), internal_str2dec(), ClientInterface::listProcesses(), load_db_opt(), Load_log_processor::load_old_format_file(), Logger::log(), log_group_checkpoint(), log_group_file_header_flush(), log_init(), log_reset_first_header_and_checkpoint(), main(), make_date_time(), Dbdih::makeNodeGroups(), map_init_emacs(), map_init_meta(), mark_progress(), RestoreMetaData::markSysTables(), match_blob(), max_decimal(), my_crawl(), my_read_charset_file(), my_vle_encode(), mysql_admin_table(), mysql_client_binlog_statement(), mysql_create_like_table(), mysql_table_grant(), NDB_COMMAND(), ndb_logevent_get_next(), ndb_mgm_abort_backup(), ndb_mgm_alloc_nodeid(), ndb_mgm_check_connection(), ndb_mgm_connect(), ndb_mgm_dump_state(), ndb_mgm_end_session(), ndb_mgm_exit_single_user(), ndb_mgm_get_configuration(), ndb_mgm_get_connection_int_parameter(), ndb_mgm_get_status(), ndb_mgm_purge_stale_sessions(), ndb_mgm_set_connection_int_parameter(), ndb_mgm_set_int64_parameter(), ndb_mgm_set_int_parameter(), ndb_mgm_set_string_parameter(), NdbConfig_AllocHomePath(), NdbConfig_ClusterLogFileName(), NdbConfig_ErrorFileName(), NdbConfig_NdbCfgName(), NdbConfig_NextTraceFileName(), NdbConfig_PidFileName(), NdbConfig_SignalLogFileName(), NdbConfig_StdoutFileName(), NdbConfig_TraceFileName(), NdbDaemon_Make(), ndbSetOwnVersion(), MYSQL_QUERY_LOG::open_query_log(), MYSQL_QUERY_LOG::open_slow_log(), Backup::openFilesReply(), AsyncFile::openReq(), operator<<(), ha_archive::optimize(), os_file_check_page_trailers(), os_file_set_size(), Properties::pack(), ConfigValues::pack(), page_cur_parse_insert_rec(), page_validate(), pars_info_add_dulint_literal(), pars_info_add_int4_literal(), parse_stab_argtypes(), Item_xml_str_func::parse_xml(), SocketRegistry< T >::performReceive(), plugin_add(), NdbBlob::postExecute(), NdbBlob::preExecute(), print(), Properties::print(), print_array(), print_arrays_for(), printCNTR_START_CONF(), printCOPY_GCI_REQ(), printCREATE_TRIG_REQ(), printDEFINE_BACKUP_REQ(), printMASTER_LCP_CONF(), printREAD_NODES_CONF(), printReport(), SimulatedBlock::progError(), propToString(), Item_param::query_val_str(), TaoCrypt::Integer::Randomize(), Log_event::read_log_event(), read_preread(), readChildInfo(), NdbBlob::readData(), readGCPEntry(), readline(), readLogEntry(), CPCD::Process::readPid(), readRecord(), AsyncFile::readReq(), readTableDesc(), readTableList(), rec_copy_prefix_to_dtuple(), Events::reconstruct_interval_expression(), recv_find_max_checkpoint(), recv_recover_page(), recv_recovery_from_checkpoint_start(), reg_replace(), regprint(), ha_tina::repair(), reportConnect(), reportDisconnect(), InitConfigFileParser::Context::reportError(), reportError(), reportReceiveLen(), reportSendLen(), InitConfigFileParser::Context::reportWarning(), Suma::resend_bucket(), Dbdict::restartCreateTab_readTableConf(), APZJobBuffer::retrieve(), APZJobBuffer::retrieveDump(), rl_callback_read_char(), rl_stuff_char(), row_build(), row_build_row_ref(), row_ins_invalidate_query_cache(), row_rec_to_index_entry(), row_scan_and_check_index(), row_sel_push_cache_row_for_mysql(), row_truncate_table_for_mysql(), row_upd_index_parse(), row_vers_build_for_consistent_read(), row_vers_build_for_semi_consistent_read(), ParserImpl::run(), SocketService::runSession(), s_print(), Item_static_float_func::safe_charset_converter(), Item_num::safe_charset_converter(), select_describe(), Dbdih::selectMasterCandidateAndSend(), Suma::send_handover_req(), Dbtc::sendAbortedAfterTimeout(), ArbitMgr::sendSignalToQmgr(), ArbitMgr::sendSignalToThread(), SocketAuthSimple::server_authenticate(), Filename::set(), TransporterRegistry::set_mgm_handle(), NdbIndexScanOperation::setBound(), Ndb::setDatabaseAndSchemaName(), NdbOperation::setPartitionHash(), ClientInterface::showProcess(), APZJobBuffer::signal2buffer(), signalHandler(), SimulatedBlock::SimulatedBlock(), sp_get_item_value(), Dbdih::startFragment(), ClientInterface::startProcess(), Ndb::startTransaction(), Ndb::startTransactionLocal(), Ndbcntr::startWaitingNodes(), ClientInterface::stopProcess(), Field_bit::store(), Protocol::store(), store_to_protocol_packet(), InitConfigFileParser::storeSection(), term_echotc(), term_set(), test(), test_bug10760(), test_bug11111(), test_bug11656(), test_bug8378(), TEST_join(), test_snprintf(), test_truncation_option(), FileUnitTest::testRead(), timer_output(), trx_sys_doublewrite_init_or_restore_pages(), trx_undo_prev_version_build(), trx_undo_update_rec_get_update(), ull2dec(), ClientInterface::undefineProcess(), Properties::unpack(), ConfigValuesFactory::unpack(), sys_var_event_scheduler::update(), usage(), ut_copy_file(), uudecode(), Field_double::val_int(), Item_func_inet_ntoa::val_str(), Item_func_sp::val_str(), Hybrid_type_traits_integer::val_str(), sys_var_thd_dbug::value_ptr(), var_set(), ConfigRetriever::verifyConfig(), version(), vprint_socket(), vprintln_socket(), SimulatedBlock::warningEvent(), write_db_opt(), NdbBlob::writeData(), and xarecover_handlerton().
| char * endptr |
Definition at line 38 of file conf_to_src.c.
Referenced by fetch_string_with_conversion(), get_int_property(), Gis_read_stream::get_next_number(), Configuration::init(), main(), print_array(), and Item_func_conv::val_str().
| char * p |
Definition at line 38 of file conf_to_src.c.
Referenced by SLListImpl< ArrayPool< Tup_page >, Tup_page, Tup_page >::add(), DLListImpl< P, T, U >::add(), add_user_option(), SLFifoListImpl< P, T, U >::addFirst(), DLFifoListImpl< P, T, U >::addFirst(), SLFifoListImpl< P, T, U >::addLast(), DLFifoListImpl< P, T, U >::addLast(), NDB_CPC::Database::addProcessCheck(), SimulatedBlock::allocRecord(), NdbOperation::branch_col(), NDB_CPC::PanelWizard::buttonSave_Click(), Configuration::calcSizeAlt(), check(), check_eol_junk(), checkData(), yaSSL::Connection::CleanMaster(), yaSSL::Connection::CleanPreMaster(), close_connection(), Cmvmi::Cmvmi(), completion_hash_exists(), completion_hash_find(), completion_hash_update(), ConfigInfo::ConfigInfo(), convert(), InitConfigFileParser::convertStringToUint64(), Dbdict::create_file_prepare_start(), Dbdict::createEventComplete_RT_USER_GET(), TaoCrypt::CRT(), TaoCrypt::Blowfish::crypt_block(), ctypestr2num(), Dbtc::Dbtc(), debug_record_parameter(), debug_write_function(), decimal_mul(), CPCDAPISession::defineProcess(), NDB_CPC::simpleparser::SimpleCPCParser::defineProcess(), NDB_CPC::Computer::defineProcess(), NDB_CPC::startDatabaseDlg::defineProcesses(), yaSSL::DiffieHellman::DiffieHellman(), do_block(), do_connect(), do_eval(), do_let(), do_modify_var(), do_resolve(), do_sleep(), do_source(), do_sync_with_master(), Dbdict::dropEventUTIL_EXECUTE_READ(), ed_delete_prev_word(), em_delete_next_word(), TaoCrypt::HexEncoder::Encode(), SimulatedBlock::FragmentInfo::equal(), Dbtc::CommitAckMarker::equal(), Dblqh::CommitAckMarker::equal(), Qmgr::execALLOC_NODEID_REQ(), Ndbcntr::execCONTINUEB(), NdbDictInterface::execCREATE_EVNT_CONF(), Backup::execDEFINE_BACKUP_REQ(), Cmvmi::execDUMP_STATE_ORD(), NdbDictInterface::execGET_TABINFO_CONF(), Dbdict::execLIST_TABLES_REQ(), Tsman::execREAD_CONFIG_REQ(), Trix::execREAD_CONFIG_REQ(), Suma::execREAD_CONFIG_REQ(), Restore::execREAD_CONFIG_REQ(), Qmgr::execREAD_CONFIG_REQ(), Pgman::execREAD_CONFIG_REQ(), Ndbfs::execREAD_CONFIG_REQ(), Ndbcntr::execREAD_CONFIG_REQ(), Lgman::execREAD_CONFIG_REQ(), DbUtil::execREAD_CONFIG_REQ(), Dbtux::execREAD_CONFIG_REQ(), Dbtup::execREAD_CONFIG_REQ(), Dbtc::execREAD_CONFIG_REQ(), Dblqh::execREAD_CONFIG_REQ(), Dbdih::execREAD_CONFIG_REQ(), Dbdict::execREAD_CONFIG_REQ(), Dbacc::execREAD_CONFIG_REQ(), Cmvmi::execREAD_CONFIG_REQ(), Backup::execREAD_CONFIG_REQ(), Ndbcntr::execREAD_NODESCONF(), Dbdict::execSUB_START_REQ(), Dbdict::execSUB_STOP_REQ(), NdbEventOperationImpl::execSUB_TABLE_DATA(), Cmvmi::execTESTSIG(), execute(), sp_instr_hpush_jump::execute(), Trix::executeInsertTransaction(), Dbdict::executeTransaction(), expand_error(), expand_prompt(), fast(), Configuration::fetch_configuration(), fill_window(), DLHashTable2< T, U >::find(), DLHashTableImpl< P, T, U >::find(), sp_pcontext::find_cond(), sp_pcontext::find_handler(), sp_pcontext::find_variable(), NDB_CPC::simpleparser::SimpleCPCParser::findProcess(), DbUtil::finishTransaction(), SLListImpl< P, T, U >::first(), SLFifoListImpl< P, T, U >::first(), DLListImpl< P, T, U >::first(), DLFifoListImpl< P, T, U >::first(), fixDepricated(), fixNodeId(), free_plugin_mem(), Rpl_filter::free_string_array(), ft_linearize(), MYSQL_LOG::generate_name(), TransporterFacade::get_an_alive_node(), EventBufData::get_blob_part_no(), get_errcodes(), get_file_name(), NdbEventBuffer::get_main_data(), yaSSL::DiffieHellman::get_parms(), ConfigRetriever::getConfig(), ConfigInfo::getDefaults(), Dbacc::getdirindex(), ConfigInfo::getInfo(), getInfoInt(), getInfoString(), PropertiesImpl::getPackedSize(), EventBufData_hash::getpkequal(), EventBufData_hash::getpkhash(), SLListImpl< P, T, U >::getPtr(), SLFifoListImpl< P, T, U >::getPtr(), DLListImpl< P, T, U >::getPtr(), DLFifoListImpl< P, T, U >::getPtr(), Array< T >::getPtr(), InitConfigFileParser::getSection(), getSection(), getSections(), NdbBlob::getTableKeyValue(), NdbEventOperationImpl::getValue(), SectionReader::getWords(), gz_open(), Ndb::handleReceivedSignal(), SLListImpl< P, T, U >::hasNext(), SLFifoListImpl< P, T, U >::hasNext(), DLListImpl< P, T, U >::hasNext(), DLFifoListImpl< P, T, U >::hasNext(), DLFifoListImpl< P, T, U >::hasPrev(), ieee_write_number(), DataBuffer< sz >::import(), BaseString::indexOf(), ClusterConfiguration::init(), init_order(), init_replace_regex(), init_sym_entry(), Dbdih::initCommonData(), Qmgr::initData(), TaoCrypt::DSA_PrivateKey::Initialize(), TaoCrypt::DSA_PublicKey::Initialize(), TaoCrypt::RSA_PrivateKey::Initialize(), TaoCrypt::DH::Initialize(), Dbtup::initRecords(), Dbtc::initRecords(), insert(), insert_row(), int10_to_str(), int2str(), IPCConfig::IPCConfig(), key__decode_str(), SLFifoListImpl< P, T, U >::last(), DLFifoListImpl< P, T, U >::last(), BaseString::lastIndexOf(), list(), CPCDAPISession::listProcesses(), NDB_CPC::simpleparser::SimpleCPCParser::listProcesses(), NDB_CPC::CPC::listProcesses(), SimBlockList::load(), main(), LocalConfig::makeConnectString(), map_addfunc(), map_bind(), mem_analyze_corruption(), NdbEventBuffer::merge_data(), TaoCrypt::ModularRoot(), TaoCrypt::Portable::Multiply4(), TaoCrypt::Portable::Multiply4Bottom(), TaoCrypt::Portable::Multiply8(), TaoCrypt::Portable::Multiply8Bottom(), my_long10_to_str_8bit(), my_longlong10_to_str_8bit(), my_parse_charset_xml(), my_read_charset_file(), my_regcomp(), my_xml_error_lineno(), my_xml_error_pos(), my_xml_error_string(), my_xml_leave(), my_xml_parse(), my_xml_parser_create(), my_xml_scan(), my_xml_set_user_data(), NDB_COMMAND(), ndb_logevent_get_next(), ndb_mgm_call(), ndbd_malloc(), NdbEnv_GetEnv(), SLListImpl< P, T, U >::next(), SLFifoListImpl< P, T, U >::next(), DLListImpl< P, T, U >::next(), DLFifoListImpl< P, T, U >::next(), nextHash(), noninc_search(), Event_timed::operator new(), operator<<(), options(), NdbBlob::packKeyValue(), Query_cache_result::parent(), NDB_CPC::simpleparser::SimpleCPCParser::parse(), Parser< T >::parse(), parse__escape(), parse_ieee(), parse_number(), parse_query(), parse_stab_array_type(), parse_stab_enum_type(), parse_stab_members(), parse_stab_string(), parse_stab_struct_fields(), parse_stab_tilde_field(), parse_stab_type(), parse_user(), Item_xml_str_func::parse_xml(), ParserImpl::parseArg(), SimplePropertiesSectionReader::peekWords(), SectionReader::peekWords(), permute_aux(), Trix::prepareInsertTransactions(), Dbdict::prepareUtilTransaction(), DLFifoListImpl< P, T, U >::prev(), NdbEventOperationImpl::print(), print_array(), printReport(), TaoCrypt::Blowfish::ProcessAndXorBlock(), prompt_print(), prompt_set(), PropertiesImpl::PropertiesImpl(), sp_pcontext::push_cond(), sp_pcontext::push_variable(), quote_breaks(), re_update_line(), read_addr(), read_and_execute(), READ_INFO::read_field(), read_history_range(), read_line(), read_query(), read_section_stabs_debugging_info(), readFromFile(), NdbEventOperationImpl::receive_event(), DLListImpl< P, T, U >::release(), DLHashTable2< T, U >::release(), DLFifoListImpl< P, T, U >::release(), SLFifoListImpl< P, T, U >::releaseFirst(), Dbacc::releaseOverpage(), releaseSections(), DLListImpl< P, T, U >::remove(), DLHashTable2< T, U >::remove(), DLHashTableImpl< P, T, U >::remove(), DLFifoListImpl< P, T, U >::remove(), SLListImpl< P, T, U >::remove_front(), NDB_CPC::Database::removeAllProcesses(), SLFifoListImpl< P, T, U >::removeFirst(), NDB_CPC::Database::removeProcess(), NDB_CPC::Computer::removeProcess(), mySTL::auto_ptr< T >::reset(), Query_cache_query::result(), rl_expand_prompt(), rl_vi_change_case(), rl_vi_change_char(), ParserImpl::run(), Parser< T >::run(), run_test(), runConsumer(), runConsumer2(), runProducer(), runProducer2(), SLListImpl< P, T, U >::seize(), DLListImpl< P, T, U >::seize(), SLFifoListImpl< P, T, U >::seizeFirst(), DLFifoListImpl< P, T, U >::seizeFirst(), SLListImpl< P, T, U >::seizeId(), DLListImpl< P, T, U >::seizeId(), SLFifoListImpl< P, T, U >::seizeLast(), DLFifoListImpl< P, T, U >::seizeLast(), SLListImpl< P, T, U >::seizeN(), select_connection(), Dbdict::sendDictLockInfoEvent(), SimulatedBlock::sendFirstFragment(), Cmvmi::sendFragmentedComplete(), SimulatedBlock::sendSignal(), ArrayPool< T >::set(), set_charset(), sp_pcontext::set_default(), yaSSL::DiffieHellman::set_sizes(), sp_pcontext::set_type(), TaoCrypt::DSA_PublicKey::SetModulus(), TaoCrypt::DH::SetP(), TaoCrypt::RSA_PrivateKey::SetPrime1(), func_args::SetSignal(), ArrayPool< T >::setSize(), setup_environment(), Configuration::setupConfiguration(), TaoCrypt::DSA_Signer::Sign(), SimulatedBlock::SimulatedBlock(), slow(), sort_ft_key_write(), sp_cond_check(), sp_test(), split(), TaoCrypt::Portable::Square2(), TaoCrypt::Portable::Square4(), stab_demangle_get_count(), stab_demangle_qualified(), stab_demangle_type(), NDB_CPC::simpleparser::SimpleCPCParser::startProcess(), NDB_CPC::Computer::startProcess(), NDB_CPC::startDatabaseDlg::startProcesses(), NdbIndexStat::stat_delete(), NdbIndexStat::stat_oldest(), NdbIndexStat::stat_update(), NdbEventOperationImpl::stop(), NDB_CPC::simpleparser::SimpleCPCParser::stopProcess(), NDB_CPC::Computer::stopProcess(), NDB_CPC::CPC::subMenuDatabaseCreate_Click(), tee_print_sized_data(), term_bind_arrow(), Dbtc::timeOutLoopStartFragLab(), tok_line(), transfer(), trie_insert(), trie_search(), ArrayListTest::tryList0(), ArrayListTest::tryList1(), ArrayListTest::tryList2(), ArrayListTest::tryList3(), ArrayPoolTest::tryPool1(), ArrayPoolTest::tryPool2(), ArrayPoolTest::tryPool3(), NDB_CPC::CPC::tvComputerCluster_AfterSelect(), NDB_CPC::simpleparser::SimpleCPCParser::undefineProcess(), NDB_CPC::Computer::undefineProcess(), NdbBlob::unpackKeyValue(), NDB_CPC::CPC::updateDatabaseView(), uudecode(), uudecode_mem(), uuencode(), uuencode_mem(), Item_func_inet_aton::val_int(), Item_func_inet_ntoa::val_str(), Item_func_trim::val_str(), Item_func_rtrim::val_str(), Dbtup::validate_page(), TaoCrypt::DSA_Verifier::Verify(), Query_cache_query::writer(), writeToFile(), xml_parent_tag(), xmlencode_print(), SimpleSignal::~SimpleSignal(), and yaSSL::SSL_SESSION::~SSL_SESSION().
| char* prog |
Definition at line 37 of file conf_to_src.c.
Referenced by main(), my_path(), and print_arrays_for().
1.4.7

