Home
last modified time | relevance | path

Searched refs:data_sec (Results 1 – 4 of 4) sorted by relevance

/third_party/elfio/examples/writer/
Dwriter.cpp90 section* data_sec = writer.sections.add( ".data" ); in main() local
91 data_sec->set_type( SHT_PROGBITS ); in main()
92 data_sec->set_flags( SHF_ALLOC | SHF_WRITE ); in main()
93 data_sec->set_addr_align( 0x4 ); in main()
99 data_sec->set_data( data, sizeof( data ) ); in main()
110 data_seg->add_section_index( data_sec->get_index(), in main()
111 data_sec->get_addr_align() ); in main()
/third_party/elfio/tests/
DELFIOTest1.cpp70 section* data_sec = writer.sections.add( ".data" ); in write_obj_i386() local
71 data_sec->set_type( SHT_PROGBITS ); in write_obj_i386()
72 data_sec->set_flags( SHF_ALLOC | SHF_WRITE ); in write_obj_i386()
73 data_sec->set_addr_align( 4 ); in write_obj_i386()
79 data_sec->set_data( data, sizeof( data ) ); in write_obj_i386()
97 nStrIndex, 0, 0, STB_LOCAL, STT_NOTYPE, 0, data_sec->get_index() ); in write_obj_i386()
181 section* data_sec = writer.sections.add( ".data" ); in write_exe_i386() local
182 data_sec->set_type( SHT_PROGBITS ); in write_exe_i386()
183 data_sec->set_flags( SHF_ALLOC | SHF_WRITE ); in write_exe_i386()
184 data_sec->set_addr_align( 0x4 ); in write_exe_i386()
[all …]
/third_party/curl/lib/
Dpingpong.c177 enum protection_level data_sec; in Curl_pp_vsendf() local
215 data_sec = conn->data_prot; in Curl_pp_vsendf()
216 DEBUGASSERT(data_sec > PROT_NONE && data_sec < PROT_LAST); in Curl_pp_vsendf()
217 conn->data_prot = data_sec; in Curl_pp_vsendf()
Dkrb5.c69 enum protection_level data_sec = conn->data_prot; in ftpsend() local
96 DEBUGASSERT(data_sec > PROT_NONE && data_sec < PROT_LAST); in ftpsend()
97 conn->data_prot = data_sec; in ftpsend()