Rizin
unix-like reverse engineering framework and cli tools
|
Go to the source code of this file.
Macros | |
#define | SYS_socket 1 /* sys_socket(2) */ |
#define | SYS_bind 2 /* sys_bind(2) */ |
#define | SYS_connect 3 /* sys_connect(2) */ |
#define | SYS_listen 4 /* sys_listen(2) */ |
#define | SYS_accept 5 /* sys_accept(2) */ |
#define | SYS_getsockname 6 /* sys_getsockname(2) */ |
#define | SYS_getpeername 7 /* sys_getpeername(2) */ |
#define | SYS_socketpair 8 /* sys_socketpair(2) */ |
#define | SYS_send 9 /* sys_send(2) */ |
#define | SYS_recv 10 /* sys_recv(2) */ |
#define | SYS_sendto 11 /* sys_sendto(2) */ |
#define | SYS_recvfrom 12 /* sys_recvfrom(2) */ |
#define | SYS_shutdown 13 /* sys_shutdown(2) */ |
#define | SYS_setsockopt 14 /* sys_setsockopt(2) */ |
#define | SYS_getsockopt 15 /* sys_getsockopt(2) */ |
#define | SYS_sendmsg 16 /* sys_sendmsg(2) */ |
#define | SYS_recvmsg 17 /* sys_recvmsg(2) */ |
#define | __sys_socketcall0(type, name) |
#define | __sys_socketcall1(type, name, type0, arg0) |
#define | __sys_socketcall2(type, name, type0, arg0, type1, arg1) |
#define | __sys_socketcall3(type, name, type0, arg0, type1, arg1, type2, arg2) |
#define | __sys_socketcall4(type, name, type0, arg0, type1, arg1, type2, arg2, type3, arg3) |
#define | __sys_socketcall5(type, name, type0, arg0, type1, arg1, type2, arg2, type3, arg3, type4, arg4) |
#define | __sys_socketcall6(type, name, type0, arg0, type1, arg1, type2, arg2, type3, arg3, type4, arg4, type5, arg5) |
Functions | |
int | socketcall (int call, unsigned long *args) |
static | __sys_socketcall3 (int, socket, int, domain, int, type, int, protocol) inline static __sys_socketcall3(int |
static struct sockaddr static addrlen | __sys_socketcall3 (int, connect, int, sockfd, const struct sockaddr *, serv_addr, socklen_t, addrlen) inline static __sys_socketcall2(int |
static struct sockaddr static addrlen static backlog | __sys_socketcall3 (int, accept, int, s, struct sockaddr *, addr, socklen_t *, addrlen) inline static __sys_socketcall4(int |
static struct sockaddr static addrlen static backlog const void static flags | __sys_socketcall4 (ssize_t, recv, int, s, void *, buf, size_t, len, int, flags) inline static __sys_socketcall6(ssize_t |
static struct sockaddr static addrlen static backlog const void static flags void struct sockaddr socklen_t static fromlen | __sys_socketcall3 (ssize_t, recvmsg, int, s, struct msghdr *, msg, int, flags) inline static __sys_socketcall6(ssize_t |
Variables | |
static | bind |
static | int |
static | sockfd |
static struct sockaddr | my_addr |
static struct sockaddr | socklen_t |
static struct sockaddr static addrlen | listen |
static struct sockaddr static addrlen | s |
static struct sockaddr static addrlen static backlog | send |
static struct sockaddr static addrlen static backlog const void | msg |
static struct sockaddr static addrlen static backlog const void | size_t |
static struct sockaddr static addrlen static backlog const void | len |
static struct sockaddr static addrlen static backlog const void static flags | recvfrom |
static struct sockaddr static addrlen static backlog const void static flags void | buf |
static struct sockaddr static addrlen static backlog const void static flags void | flags |
static struct sockaddr static addrlen static backlog const void static flags void struct sockaddr | from |
static struct sockaddr static addrlen static backlog const void static flags void struct sockaddr socklen_t static fromlen | sendto |
static struct sockaddr static addrlen static backlog const void static flags void struct sockaddr socklen_t static fromlen const void const struct sockaddr | to |
Definition at line 44 of file sfsocketcall.h.
Definition at line 50 of file sfsocketcall.h.
Definition at line 58 of file sfsocketcall.h.
#define __sys_socketcall5 | ( | type, | |
name, | |||
type0, | |||
arg0, | |||
type1, | |||
arg1, | |||
type2, | |||
arg2, | |||
type3, | |||
arg3, | |||
type4, | |||
arg4 | |||
) |
#define __sys_socketcall6 | ( | type, | |
name, | |||
type0, | |||
arg0, | |||
type1, | |||
arg1, | |||
type2, | |||
arg2, | |||
type3, | |||
arg3, | |||
type4, | |||
arg4, | |||
type5, | |||
arg5 | |||
) |
#define SYS_accept 5 /* sys_accept(2) */ |
Definition at line 29 of file sfsocketcall.h.
#define SYS_bind 2 /* sys_bind(2) */ |
Definition at line 26 of file sfsocketcall.h.
#define SYS_connect 3 /* sys_connect(2) */ |
Definition at line 27 of file sfsocketcall.h.
#define SYS_getpeername 7 /* sys_getpeername(2) */ |
Definition at line 31 of file sfsocketcall.h.
#define SYS_getsockname 6 /* sys_getsockname(2) */ |
Definition at line 30 of file sfsocketcall.h.
#define SYS_getsockopt 15 /* sys_getsockopt(2) */ |
Definition at line 39 of file sfsocketcall.h.
#define SYS_listen 4 /* sys_listen(2) */ |
Definition at line 28 of file sfsocketcall.h.
#define SYS_recv 10 /* sys_recv(2) */ |
Definition at line 34 of file sfsocketcall.h.
#define SYS_recvfrom 12 /* sys_recvfrom(2) */ |
Definition at line 36 of file sfsocketcall.h.
#define SYS_recvmsg 17 /* sys_recvmsg(2) */ |
Definition at line 41 of file sfsocketcall.h.
#define SYS_send 9 /* sys_send(2) */ |
Definition at line 33 of file sfsocketcall.h.
#define SYS_sendmsg 16 /* sys_sendmsg(2) */ |
Definition at line 40 of file sfsocketcall.h.
#define SYS_sendto 11 /* sys_sendto(2) */ |
Definition at line 35 of file sfsocketcall.h.
#define SYS_setsockopt 14 /* sys_setsockopt(2) */ |
Definition at line 38 of file sfsocketcall.h.
#define SYS_shutdown 13 /* sys_shutdown(2) */ |
Definition at line 37 of file sfsocketcall.h.
#define SYS_socket 1 /* sys_socket(2) */ |
Definition at line 25 of file sfsocketcall.h.
#define SYS_socketpair 8 /* sys_socketpair(2) */ |
Definition at line 32 of file sfsocketcall.h.
|
inlinestatic |
|
inlinestatic |
|
inlinestatic |
|
inlinestatic |
bind |
Definition at line 114 of file sfsocketcall.h.
Referenced by maybe_new_socket(), netlink_socket(), new_socket(), rebase_buffer(), rz_cons_bind(), rz_socket_connect(), rz_socket_listen(), uv__tcp_bind(), uv__udp_bind(), uv_pipe_bind(), uv_tcp_try_bind(), and uv_udp_maybe_bind().
struct sockaddr static addrlen static backlog const void static flags void struct sockaddr socklen_t static fromlen const void buf |
Definition at line 123 of file sfsocketcall.h.
static void flags |
Definition at line 123 of file sfsocketcall.h.
Referenced by _6502_analysis_esil_update_flags(), __childrenFlagsOf(), __init_autocomplete_default(), __isOnlySon(), __printRecursive(), __translate_perms(), _extract_flags(), _extract_regs(), _instName(), _write_flag_bits(), _zip_allocate_new(), _zip_dirent_needs_zip64(), _zip_dirent_size(), _zip_dirent_write(), _zip_ef_delete_by_id(), _zip_ef_get_by_id(), _zip_ef_new(), _zip_ef_parse(), _zip_ef_size(), _zip_ef_write(), _zip_file_replace(), _zip_fopen_close_on_exec(), _zip_get_dirent(), _zip_get_name(), _zip_hash_add(), _zip_hash_lookup(), _zip_name_locate(), _zip_open(), _zip_read_eocd(), _zip_read_eocd64(), _zip_set_name(), _zip_source_zip_new(), _zip_string_get(), _zip_string_new(), aarch64_print_operand(), add_data(), add_mmio_extended_flag_cb(), add_mmio_flag_cb(), arc_opcode_init_tables(), arcExtMap_instName(), auto_decoder_init(), bin_elf_versioninfo_verneed(), bin_pe_dotnet_read_method_header(), bochs_wait(), buffer_from_file(), clear_flags(), clusterCron(), clusterDoBeforeSleep(), clusterProcessGossipSection(), clusterProcessPacket(), clusterSendPing(), compareString(), create_vmi_class_type(), createClusterNode(), curl_perform(), desc_list_visual_cb(), dex_access_flags_to_bin_flags(), do_read(), ds_print_data_type(), dsmOneArcInst(), file_or_fd(), file_strncmp(), file_strncmp16(), flag_tag_print(), flags_to_json(), flirt_write_module(), flirt_write_node(), fnmatch(), format_output(), fs__copyfile(), fs__open(), fs__stat_impl_from_path(), fs__symlink(), fs__utime_impl_from_path(), function_rename(), gdbr_open_file(), gdbr_parse_target_xml(), get_flags(), get_num_entries(), get_type(), get_ver_flags(), get_vernaux_entry_sdb(), GetFirstHeapBlock(), getinfo(), GetNextHeapBlock(), gunpipe(), gzhead(), gzheader(), hole_new(), inflateSync(), instruction_name(), io_init(), io_open_dest_real(), io_open_src_real(), is_skippable_addr(), java_access_flags_to_bin_flags(), linux_dbg_wait(), lunpipe(), LZMA_API(), lzma_stream_decoder_init(), main(), maybe_new_socket(), mpca_grammar(), mpca_lang(), mpca_lang_contents(), mpca_lang_file(), mpca_lang_pipe(), name_locate(), new_socket(), open_compressed(), operand_general_constraint_met_p(), parse_leaf(), parseCodeDirectory(), rax(), read_from_file(), read_hdr(), read_hole(), read_image_metadata_tilde_header(), read_module_public_functions(), read_to_memory(), remove_offsetmap(), representClusterNodeFlags(), resolve_method_flags(), rtti_itanium_type_info_type_from_flag(), rz_analysis_dwarf_integrate_functions(), rz_bin_java_class_fields_as_text(), rz_bin_java_class_methods_as_text(), rz_coff_perms_from_section_flags(), rz_core_analysis_esil_emulate(), rz_core_analysis_hasrefs_to_depth(), rz_core_bin_method_flags_str(), rz_core_cmd_foreach3(), rz_core_disasm_pdi_with_buf(), rz_core_file_open(), rz_core_flirt_app_from_option_list(), rz_core_flirt_file_from_option_list(), rz_core_flirt_os_from_option_list(), rz_core_print_disasm_json(), rz_core_rtr_rap_run(), rz_core_visual(), rz_debug_winkd_reg_write(), rz_flag_describe_at_handler(), rz_flag_get_nearest_list(), rz_flag_graph_handler(), rz_flag_tag_search_handler(), rz_flag_unset_all_in_space(), rz_hash_show_algorithms(), rz_il_reg_binding_derive(), rz_io_fd_open(), rz_magic_new(), rz_magic_setflags(), rz_main_rz_ax(), RZ_PACKED(), rz_platform_profile_add_flag_every_io(), rz_regex_flags(), rz_regex_get_match_list(), rz_regex_match(), rz_regex_new(), rz_socket_block_time(), rz_sys_open(), rz_w32_dbg_modules(), rz_xnu_kernelcache_buf_is_kernelcache(), sdb_match(), sections(), sections_print_json(), set_file_compression(), setcursor(), SOCKOPT_SETTER(), source_hole_create(), update_flags(), use_stdin(), uv__cloexec_fcntl(), uv__create_stdio_pipe_pair(), uv__dup3(), uv__fs_copy_file_range(), uv__fs_statx(), uv__getrandom(), uv__io_poll(), uv__make_pipe(), uv__metrics_set_provider_entry_time(), uv__metrics_update_idle_time(), uv__nonblock_fcntl(), uv__open_cloexec(), uv__poll(), uv__poll_wine(), uv__process_open_stream(), uv__recvmsg(), uv__statx(), uv__stream_open(), uv__tcp_bind(), uv__udp_bind(), uv__udp_maybe_deferred_bind(), uv__udp_recvmsg(), uv_fs_access(), uv_fs_copyfile(), uv_fs_event_start(), uv_fs_open(), uv_fs_scandir(), uv_fs_symlink(), uv_getnameinfo(), uv_interface_addresses(), uv_pipe_open(), uv_process_tcp_read_req(), uv_process_udp_recv_req(), uv_random(), uv_tcp_bind(), uv_tcp_init_ex(), uv_tcp_listen(), uv_tcp_queue_read(), uv_tcp_try_bind(), uv_tty_init(), uv_tty_set_mode(), uv_udp_bind(), uv_udp_init_ex(), uv_udp_maybe_bind(), uv_udp_queue_recv(), uv_wsarecv_workaround(), uv_wsarecvfrom_workaround(), walk_exports(), windbg_breakpoint(), windows_open(), winkd_query_mem(), winkd_write_reg(), xz_decompress(), zip_dir_add(), zip_file_add(), zip_file_extra_field_delete(), zip_file_extra_field_delete_by_id(), zip_file_extra_field_get(), zip_file_extra_field_get_by_id(), zip_file_extra_field_set(), zip_file_extra_fields_count(), zip_file_extra_fields_count_by_id(), zip_file_get_comment(), zip_file_get_external_attributes(), zip_file_rename(), zip_file_replace(), zip_file_set_comment(), zip_file_set_dostime(), zip_fopen(), zip_fopen_encrypted(), zip_fopen_index(), zip_fopen_index_encrypted(), zip_get_archive_comment(), zip_get_archive_flag(), zip_get_file_comment(), zip_get_name(), zip_get_num_entries(), zip_name_locate(), zip_open_from_source(), zip_set_file_compression(), zip_source_pkware_decode(), zip_source_pkware_encode(), zip_source_winzip_aes_decode(), zip_source_zip(), zip_source_zip_create(), zip_stat(), zip_stat_index(), ziptool_open(), and zlibCompileFlags().
static void struct sockaddr socklen_t static fromlen static backlog static fork char char char static envp int struct rusage static rusage struct utsname static buf struct sembuf static nsops static fd const char static length unsigned struct dirent unsigned static count const char const char static newpath const char static pathname const char const char static newpath const char const char static newpath const char static mode const char static group const char static group struct timeval struct timezone static tz struct tms static buf static getuid static getgid static getegid static getppid static setsid static egid static suid static pid static fsgid static data const char static dev unsigned static persona const char struct statfs static buf unsigned char static buf static prio struct sched_param static p static policy struct timespec static tp const void static len static munlockall const char static path const char static filename const char static path const char static len unsigned from |
Definition at line 123 of file sfsocketcall.h.
Referenced by __core_analysis_fcn(), __system(), _CbInRangeAav(), _CbInRangeSearchV(), _zip_ef_merge(), agraph_print_edge(), agraph_print_edge_dot(), agraph_print_edge_gml(), analBars(), analysis_path_exists(), anop32(), append_bound(), calculate_luhn(), clear_bb_vars(), cmd_analysis_graph(), cmd_dcu(), cmd_print_bars(), cmd_print_blocks(), cmd_search_bin(), copy_source(), copymeta(), core_analysis_graph_construct_edges(), core_search_for_xrefs_in_boundaries(), create_dummy_nodes(), debug_trace_calls(), decomp(), DEFINE_HANDLE_TS_FCN_AND_SYMBOL(), desc_list_json_cb(), dfs_node(), do_analysis_search(), do_asm_search(), do_debug_trace_calls(), do_esil_search(), do_ref_search(), do_section_search(), do_string_search(), do_syscall_search(), ds_show_xrefs(), extract_arg(), fix_back_edge_dummy_nodes(), flirt_node_shorten_pattern(), get_symbols(), get_symbols_list(), GetHeapBlocks(), GetSegmentHeapBlocks(), handleMidFlags(), hash_print_crypto(), hash_print_digest(), ihex_write(), inBetween(), inflate(), inflate_fast(), inflateBack(), inflateBack9(), loganalysis(), main(), memorise_file(), meta_set(), pager_next_match(), pager_prev_match(), pager_printpage(), process_cabinet(), process_one_string(), recall_file(), recurse(), remove_cycles(), repeat(), replace_lines(), rotate(), rz_analysis_aefa(), rz_analysis_fcn_count(), rz_analysis_set_limits(), rz_analysis_xref_del(), rz_analysis_xref_new(), rz_analysis_xrefs_del_handler(), rz_analysis_xrefs_deln(), rz_analysis_xrefs_set(), rz_bin_file_strings(), rz_bin_get_section_at(), rz_bin_object_get_map_at(), rz_bin_object_get_maps_at(), rz_bin_strpurge(), rz_bin_trycatch_new(), rz_bp_traptrace_add(), rz_bp_traptrace_at(), rz_bp_traptrace_free_at(), rz_buf_sparse_populated_in(), rz_cmd_debug_trace_calls_handler(), rz_cmd_help(), rz_cmd_search(), rz_cons_less_str(), rz_core_analysis_callgraph(), rz_core_analysis_esil_default(), rz_core_analysis_esil_references_all_functions(), rz_core_analysis_fcn(), rz_core_analysis_get_stats(), rz_core_analysis_graph(), rz_core_analysis_paths(), rz_core_analysis_refs(), rz_core_analysis_search(), rz_core_analysis_search_xrefs(), rz_core_analysis_value_pointers(), rz_core_asm_strsearch(), rz_core_cmd_foreach(), rz_core_cmd_subst_i(), rz_core_file_print(), rz_core_get_boundaries_prot(), rz_core_get_stacksz(), rz_core_print_hexdump_or_hexdiff_str(), rz_core_print_scrollbar(), rz_core_print_scrollbar_bottom(), rz_core_search_cb(), rz_core_search_prelude(), rz_core_search_preludes(), rz_core_search_rop(), rz_core_search_value_in_range(), rz_core_visual_cmd(), rz_core_visual_comments(), rz_core_write_duplicate_at(), rz_core_write_seq_at(), rz_diff_unified_json(), rz_diff_unified_text(), rz_flag_foreach_range(), rz_flag_relocate_handler(), rz_flag_zone_add(), rz_flag_zone_barlist(), rz_flag_zone_get_inrange(), rz_graph_add_edge(), rz_graph_add_edge_at(), rz_graph_adjacent(), rz_graph_del_edge(), rz_io_cache_commit(), rz_io_cache_invalidate(), rz_io_map_next_address(), rz_print_have_cursor(), rz_scan_strings(), rz_scan_strings_raw(), rz_search_aes_update(), rz_search_deltakey_update(), rz_search_mybinparse_update(), rz_search_pattern(), rz_search_privkey_update(), rz_search_regexp_update(), rz_search_strings_update(), rz_search_update(), rz_search_update_i(), rz_str_range_foreach(), rz_str_range_in(), rz_strbuf_slice(), rz_write_cache_commit_handler(), rz_write_cache_remove_handler(), rz_write_op_sequence_handler(), sdb_aslice(), search_hash(), search_similar_pattern_in(), set_layout(), setdiff(), update_varz_analysisysis(), uv_process_udp_recv_req(), xrefs_load_cb(), and xrefs_set().
typedef int |
Definition at line 114 of file sfsocketcall.h.
Referenced by __approximate_rgb(), __desc_cache_cleanup_cb(), __move_panel_to_left(), __open(), _zip_name_locate(), DotZLib.Deflater::Add(), DotZLib.Inflater::Add(), add_item_to_regset(), adjust_class(), amd29k_instr_jump(), amd29k_instr_print(), anop(), anop64(), anop_esil(), arc_opcode_init_tables(), arcAnalyzeInstr(), args_parse(), ARM_AM_getAM2Opc(), arm_assemble(), backtrace_vars(), bin_elf_versioninfo_verneed(), binutils_assemble(), bits(), BMK_benchFiles(), BMK_benchMem(), byte_compare(), cabd_checksum(), cabd_init_decomp(), machtraps::carve_trap_num(), cb_fixrows(), cdb_read(), ios-syscalls::chk(), cmd_debug_cont_syscall(), cmd_print_blocks(), cmd_pxr(), compare(), build_mig_index::convert(), copy_fh(), core_analysis_followptr(), cs_disasm(), dalvik_disassemble(), dalvik_op(), decode_imm16_sh2(), decode_ins(), decode_ra_i16_sh2(), dem_str_replace(), deserialize_checkpoints_cb(), do_asm_search(), do_target_signal_to_host(), ds_print_dwarf(), ds_print_esil_analysis(), ds_print_meta_infos(), ds_print_sysregs(), entry_cmp(), env_strncmp(), findPair(), format_output(), fullSpeedBench(), FUZ_AddressOverflow(), FUZ_test(), FUZ_unitTests(), fuzzerTests(), gb_reg_idx(), gdbr_attach(), const_generator::gen(), DotZLib.CircularBuffer::Get(), get_backtrace_info(), get_cond_from_value(), get_import_addr_mips(), get_ins_bits(), conf::get_libuv_version(), get_register_id(), getmalfd(), getNetlinkResponse(), getreg(), getRegName(), gunpipe(), gz_comp(), gzputs(), handle_lldb_read_reg(), handle_stop_reason(), hash_get_int(), in(), inet_ntop6(), inflate(), inflate_table(), inflate_table9(), input(), interpretAddrs(), interpretLink(), interpretLinks(), iob_pipe_read(), is_number(), is_tcache(), label_off(), len_fixup(), LLVMFuzzerTestOneInput(), load_omf_lnames(), longest_match(), lua_parse_debug(), LZ4_compress_generic_validated(), LZ4_saveDict(), LZ4_saveDictHC(), LZ4F_getErrorName(), LZ4F_makeBlock(), LZ4HC_compress_hashChain(), LZ4HC_compress_optimal(), LZ4HC_countBack(), LZ4HC_FindLongerMatch(), LZ4HC_InsertAndGetWiderMatch(), LZ4HC_literalsPrice(), LZ4HC_sequencePrice(), LZ4IO_compressFilename_Legacy(), LZ4IO_setBlockSize(), LZ4IO_setBlockSizeID(), LZMA_API(), lzxd_decompress(), m68k_disassemble(), M68K_reg_name(), magiccheck(), InstallSymlink::main(), main(), make_discover_msg(), meta_load_cb(), mszipd_decompress(), mytime_get_flush_timeout(), nanosleep(), nios2_print_insn_arg(), disasm_mc::normalize_hex(), test_mc::normalize_hex(), Operand_label12_decode(), Operand_label8_decode(), Operand_simm12b_decode(), Operand_simm4_decode(), Operand_simm8_decode(), Operand_simm8x256_decode(), Operand_soffset_decode(), Operand_soffsetx4_decode(), Operand_xt_wbr15_label_decode(), Operand_xt_wbr18_label_decode(), out(), parse_enumerator(), parse_import_stub(), print_arena_stats(), print_heap_bin(), print_heap_fastbin(), print_options(), print_stats(), print_xtensa_operand(), printHistBlock(), process(), qtmd_decompress(), rax(), read_sys_file(), read_thread_id(), read_times(), rtti_msvc_read_base_class_descriptor(), rz_analysis_function_vars_bp_getref_handler(), rz_analysis_function_vars_bp_handler(), rz_analysis_function_vars_bp_setref_handler(), rz_analysis_function_vars_sp_getref_handler(), rz_analysis_function_vars_sp_handler(), rz_analysis_function_vars_sp_setref_handler(), rz_arm_cs_analysis_op_64_esil(), rz_asm_pseudo_byte(), rz_bp_traptrace_at(), rz_bp_traptrace_next(), rz_cmd_debug_allocate_maps_handler(), rz_cmd_debug_dmL_handler(), rz_cmd_debug_step_back_handler(), rz_cmd_debug_step_handler(), rz_cmd_debug_step_line_handler(), rz_cmd_debug_step_over_handler(), rz_cmd_debug_step_prog_handler(), rz_cmd_debug_step_skip_handler(), rz_cmd_disassembly_n_bytes_handler(), rz_cmd_disassembly_n_instructions_handler(), rz_cmd_print(), rz_cmd_print_timestamp_hfs_handler(), rz_cmd_print_timestamp_unix_handler(), rz_cons_color(), rz_cons_html_filter(), rz_cons_visual_write(), rz_core_analysis_bytes(), rz_core_autocomplete(), rz_core_bin_apply_resources(), rz_core_bin_basefind_print(), rz_core_bin_whole_strings(), rz_core_cmd_subst_i(), rz_core_debug_breakpoint_toggle(), rz_core_handle_backwards_disasm(), rz_core_init(), rz_core_rtr_cmd(), rz_core_search_cb(), rz_core_syscall_as_string(), rz_core_visual_title(), rz_debruijn_offset(), rz_debug_drx_handler(), rz_debug_reg_sync(), rz_diff_parse_arguments(), rz_egg_mkvar(), rz_file_gzslurp(), rz_file_slurp_range(), rz_get_size(), rz_heap_bin_content(), rz_il_step_evaluate_handler(), rz_il_step_handler(), rz_io_desc_cache_read(), rz_io_desc_cache_write(), rz_mem_copybits(), rz_open_close_handler(), rz_open_exchange_handler(), rz_open_malloc_handler(), rz_open_maps_map_handler(), rz_open_maps_prioritize_fd_handler(), rz_print_bitstream_handler(), rz_print_byte_bitstream_handler(), rz_print_delta_pointer_table_handler(), rz_print_hexdump_annotated_handler(), rz_print_hexdump_bits_handler(), rz_print_hexdump_comments_handler(), rz_print_hexdump_emoji_handler(), rz_print_hexdump_handler(), rz_print_hexdump_hex_common_handler(), rz_print_hexdump_hexl_common_handler(), rz_print_hexdump_hexless_bytes_handler(), rz_print_hexdump_hexless_words_handler(), rz_print_hexdump_hexpair_bytes_handler(), rz_print_hexdump_n_lines_handler(), rz_print_hexdump_oct_handler(), rz_print_hexdump_signed_integer_common_handler(), rz_print_hexdump_sparse_handler(), rz_print_hexword_references_common_handler(), rz_print_op_analysis_color_map_handler(), rz_reg_get_list(), rz_reopen_handler(), rz_reopen_write_handler(), rz_str_bits_from_string(), rz_str_firstbut(), rz_str_lastbut(), rz_str_replace(), rz_str_replace_icase(), rz_str_replace_thunked(), rz_str_scale(), rz_sys_run(), rz_sys_sigaction(), rz_syscall_get_num(), rz_syscall_item_new_from_string(), rz_write_debruijn_handler(), rz_write_duplicate_handler(), rz_write_op_sequence_handler(), rz_write_pcache_commit_handler(), rz_write_pcache_list_handler(), rzpipe_open(), search_hash(), show_syscall(), siglistjsoncb(), signals_exit(), SStream_concat0(), stop_reason_exit(), stop_reason_terminated(), TAG_CALLBACK(), test(), objdump-m68k::test_class(), test_compress(), test-lz4-list.TestVerbose::test_compressed(), test_file(), test-lz4-list.TestVerbose::test_uncompressed(), trimbits(), unz64local_DosDateToTmuDate(), unz64local_getByte(), unzOpenCurrentFile3(), unzReadCurrentFile(), unzRepair(), update_graph_sizes(), update_keys(), uv__fs_scandir_cleanup(), uv__getsockpeername(), uv__mkostemp_initonce(), uv__set_process_title(), uv__stream_connect(), uv_cpu_info(), uv_exepath(), uv_spawn(), uv_tcp_open(), uv_tty_write_bufs(), uv_udp_open(), uv_udp_set_socket(), uv_winsock_init(), visual_search(), win32_read_file_func(), win32_seek64_file_func(), win32_seek_file_func(), win32_tell64_file_func(), win32_tell_file_func(), win32_write_file_func(), xnu_collect_thread_state(), zip64local_getByte(), zip_error_to_data(), zip_get_archive_comment(), zip_get_file_comment(), zip_open_from_source(), and zip_source_accept_empty().
struct sockaddr static addrlen static backlog const void static flags void struct sockaddr socklen_t static fromlen const void len |
Definition at line 119 of file sfsocketcall.h.
Definition at line 116 of file sfsocketcall.h.
Referenced by rz_socket_listen(), uv__tcp_xfer_export(), uv_pipe_listen(), and uv_tcp_listen().
Definition at line 119 of file sfsocketcall.h.
Referenced by __add_visual_mark(), __check_panel_num(), __prompt(), __show_status(), __show_status_input(), __show_status_yesno(), __system(), __update_help(), addVar(), autocomplete_flagspaces(), clusterLogCantFailover(), clusterSendMessage(), compress(), decompress(), ds_print_data_type(), ds_print_ptr(), error(), filterFlags(), function_list_print(), gdbr_exec_file_read(), gdbr_is_thread_dead(), gdbr_read_feature(), gdbr_read_osdata(), get_mem_info(), getstr(), gz_error(), handle_dead_notify(), handle_exception_message(), http_logf(), init_decoder(), init_encoder(), init_message_queue(), mwerror(), myregwrite(), os390_message_queue_handler(), pack(), pj_begin(), pj_end(), pj_raw(), readline_callback(), rz_buf_new_with_string(), rz_cmd_help(), rz_cons_any_key(), rz_cons_echo(), rz_cons_input(), rz_cons_message(), rz_core_analysis_callgraph(), rz_core_bin_load(), rz_core_clippy(), rz_core_print_bb_gml(), rz_core_visual_define(), rz_core_visual_view_rop(), rz_main_rizin(), rz_num_get_name(), rz_str_appendlen(), send_msg(), showstr(), uncompress(), uv__dlerror(), uv__read(), uv__recvmsg(), uv__signal_event(), uv__signal_handler(), uv__stream_recv_cmsg(), uv__tty_console_resize_message_loop_thread(), uv__write(), validate_mach_message(), and xnu_wait_for_exception().
struct sockaddr my_addr |
Definition at line 114 of file sfsocketcall.h.
Definition at line 123 of file sfsocketcall.h.
Definition at line 116 of file sfsocketcall.h.
Definition at line 119 of file sfsocketcall.h.
Referenced by iob_pipe_write(), and rz_socket_write().
struct sockaddr static addrlen static backlog const void static flags void struct sockaddr socklen_t static fromlen sendto |
Definition at line 125 of file sfsocketcall.h.
Referenced by netlink_send().
struct sockaddr static addrlen static backlog const void static flags void struct sockaddr socklen_t static fromlen const void size_t |
Definition at line 119 of file sfsocketcall.h.
sockfd |
Definition at line 114 of file sfsocketcall.h.
Referenced by create_curl_context(), new_socket(), redirect_socket_to_pty(), uv__accept(), uv__interface_addresses_v6(), uv__set_phys_addr(), uv__set_reuse(), uv__socket(), uv_interface_addresses(), and uv_pipe_bind().
struct sockaddr static addrlen static backlog const void static flags void struct sockaddr socklen_t static fromlen const void const struct sockaddr socklen_t |
Definition at line 114 of file sfsocketcall.h.
struct sockaddr static addrlen static backlog const void static flags void struct sockaddr socklen_t static fromlen const void const struct sockaddr to |
Definition at line 125 of file sfsocketcall.h.
Referenced by __system(), _CbInRangeAav(), _CbInRangeSearchV(), _zip_ef_merge(), add_refline(), agraph_print_edge(), agraph_print_edge_dot(), agraph_print_edge_gml(), analBars(), analysis_path_exists(), anop32(), bin_pe_read_metadata_string(), buf_sparse_read(), buf_sparse_resize(), calculate_decrypt(), calculate_encrypt(), calculate_hash(), calculate_luhn(), check_buffer(), clear_bb_vars(), cmd_analysis_graph(), cmd_dcu(), cmd_print_bars(), cmd_print_blocks(), cmd_search_bin(), copy_source(), copymeta(), core_analysis_graph_construct_edges(), core_search_for_xrefs_in_boundaries(), create_dummy_nodes(), debug_trace_calls(), decomp(), DEFINE_HANDLE_TS_FCN_AND_SYMBOL(), do_analysis_search(), do_asm_search(), do_debug_trace_calls(), do_esil_search(), do_ref_search(), do_section_search(), do_string_search(), do_syscall_search(), extract_arg(), fix_back_edge_dummy_nodes(), get_sections(), get_symbols(), get_symbols_list(), handleMidFlags(), hash_context_compare_hashes(), hash_print_crypto(), hash_print_digest(), inBetween(), loganalysis(), main(), meta_set(), objc_find_refs(), pager_printpage(), print_graph_agg(), print_search_progress(), process_one_string(), remove_cycles(), repeat(), replace(), replace_lines(), rotate(), rz_analysis_aefa(), rz_analysis_fcn_count(), rz_analysis_set_limits(), rz_analysis_xref_del(), rz_analysis_xref_new(), rz_analysis_xrefs_del_handler(), rz_analysis_xrefs_deln(), rz_analysis_xrefs_set(), rz_bin_get_section_at(), rz_bin_object_get_map_at(), rz_bin_object_get_maps_at(), rz_bin_strpurge(), rz_bin_trycatch_new(), rz_bp_traptrace_add(), rz_buf_sparse_populated_in(), rz_cmd_debug_trace_calls_handler(), rz_cmd_help(), rz_cmd_search(), rz_cons_less_str(), rz_cons_newline(), rz_core_analysis_callgraph(), rz_core_analysis_esil_default(), rz_core_analysis_esil_references_all_functions(), rz_core_analysis_get_stats(), rz_core_analysis_graph(), rz_core_analysis_paths(), rz_core_analysis_refs(), rz_core_analysis_search(), rz_core_analysis_search_xrefs(), rz_core_analysis_value_pointers(), rz_core_asm_strsearch(), rz_core_cmd_foreach(), rz_core_cmd_subst_i(), rz_core_get_boundaries_prot(), rz_core_get_stacksz(), rz_core_link_stroff(), rz_core_print_hexdump_or_hexdiff_str(), rz_core_print_scrollbar(), rz_core_print_scrollbar_bottom(), rz_core_search_cb(), rz_core_search_prelude(), rz_core_search_preludes(), rz_core_search_rop(), rz_core_search_value_in_range(), rz_core_write_seq_at(), rz_diff_unified_json(), rz_diff_unified_text(), rz_flag_foreach_range(), rz_flag_move(), rz_flag_relocate(), rz_flag_relocate_handler(), rz_flag_zone_get_inrange(), rz_graph_add_edge(), rz_graph_add_edge_at(), rz_graph_adjacent(), rz_graph_del_edge(), rz_io_cache_commit(), rz_io_cache_invalidate(), rz_io_map_next_address(), rz_io_map_next_available(), rz_print_cursor_pointer(), rz_print_have_cursor(), rz_range_add(), rz_range_contains(), rz_range_get_n(), rz_range_inverse(), rz_range_item_get(), rz_range_percent(), rz_range_sub(), rz_scan_strings(), rz_scan_strings_raw(), rz_search_pattern(), rz_str_range_foreach(), rz_str_range_in(), rz_write_cache_commit_handler(), rz_write_cache_remove_handler(), rz_write_op_sequence_handler(), rzfind_open_file(), sdb_aslice(), search_hash(), search_similar_pattern_in(), set_layout(), setdiff(), update_varz_analysisysis(), windbg_map_get(), xrefs_load_cb(), and xrefs_set().