/third_party/elfio/examples/writer/ |
D | writer.cpp | 59 text_sec->set_flags( SHF_ALLOC | SHF_EXECINSTR ); in main() 82 text_seg->set_flags( PF_X | PF_R ); in main() 91 data_sec->set_flags( SHF_ALLOC | SHF_WRITE ); in main() 105 data_seg->set_flags( PF_W | PF_R ); in main()
|
/third_party/elfio/tests/ |
D | ELFIOTest1.cpp | 51 text_sec->set_flags( SHF_ALLOC | SHF_EXECINSTR ); in write_obj_i386() 69 data_sec->set_flags( SHF_ALLOC | SHF_WRITE ); in write_obj_i386() 150 text_sec->set_flags( SHF_ALLOC | SHF_EXECINSTR ); in write_exe_i386() 172 text_seg->set_flags( PF_X | PF_R ); in write_exe_i386() 179 data_sec->set_flags( SHF_ALLOC | SHF_WRITE ); in write_exe_i386() 192 data_seg->set_flags( PF_W | PF_R ); in write_exe_i386() 522 text_sec1->set_flags( SHF_ALLOC | SHF_EXECINSTR ); in TEST() 530 text_sec2->set_flags( SHF_ALLOC | SHF_EXECINSTR ); in TEST() 537 null_sec1->set_flags( SHF_ALLOC | SHF_EXECINSTR ); in TEST() 541 null_sec2->set_flags( SHF_ALLOC | SHF_EXECINSTR ); in TEST() [all …]
|
D | ELFIOTest.cpp | 719 writer.set_flags( 0 ); in TEST() 727 note_sec->set_flags( SHF_ALLOC ); in TEST() 772 writer.set_flags( 0 ); in TEST() 780 note_sec->set_flags( SHF_ALLOC ); in TEST() 825 writer.set_flags( 0 ); in TEST() 833 note_sec->set_flags( SHF_ALLOC ); in TEST() 878 writer.set_flags( 0 ); in TEST() 886 note_sec->set_flags( SHF_ALLOC ); in TEST()
|
/third_party/lwip/src/include/lwip/ |
D | raw.h | 125 #define raw_set_flags(pcb, set_flags) do { (pcb)->flags = (u8_t)((pcb)->flags | (set_… argument
|
D | udp.h | 162 #define udp_set_flags(pcb, set_flags) do { (pcb)->flags = (u8_t)((pcb)->flags | (set_… argument
|
D | api.h | 372 #define netconn_set_flags(conn, set_flags) do { (conn)->flags = (u8_t)((conn)->flags | (set_fl… argument
|
D | tcp.h | 432 #define tcp_set_flags(pcb, set_flags) do { (pcb)->flags = (tcpflags_t)((pcb)->flags | … argument
|
D | netif.h | 489 #define netif_set_flags(netif, set_flags) do { (netif)->flags = (u8_t)((netif)->flags | (set_f… argument
|
/third_party/rust/crates/signal-hook/src/low_level/ |
D | pipe.rs | 102 fn set_flags(&self) -> Result<(), Error> { in set_flags() method 189 fd.set_flags()?; in register_raw()
|
/third_party/python/Lib/test/ |
D | test_mailbox.py | 614 msg.set_flags('RF') 624 msg0.set_flags('TP') 648 msg.set_flags('RF') 1481 msg.set_flags('F') 1484 msg.set_flags('SDTP') 1513 msg.set_flags('SF') 1557 msg.set_flags('F') 1559 msg.set_flags('XODR') 1717 msg_maildir.set_flags('DFPRST') 1734 msg_maildir.set_flags(setting) [all …]
|
/third_party/cef/libcef_dll/ctocpp/ |
D | request_ctocpp.cc | 333 if (CEF_MEMBER_MISSING(_struct, set_flags)) in SetFlags() 339 _struct->set_flags(_struct, flags); in SetFlags()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/ap/ |
D | ap_drv_ops.c | 273 int set_flags, total_flags, flags_and, flags_or; in hostapd_set_sta_flags() local 275 set_flags = WPA_STA_SHORT_PREAMBLE | WPA_STA_WMM | WPA_STA_MFP; in hostapd_set_sta_flags() 279 set_flags |= WPA_STA_AUTHORIZED; in hostapd_set_sta_flags() 280 flags_or = total_flags & set_flags; in hostapd_set_sta_flags() 281 flags_and = total_flags | ~set_flags; in hostapd_set_sta_flags()
|
/third_party/elfio/examples/write_obj/ |
D | write_obj.cpp | 69 text_sec->set_flags( SHF_ALLOC | SHF_EXECINSTR ); in main()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/ap/ |
D | ap_drv_ops.c | 278 int set_flags, total_flags, flags_and, flags_or; in hostapd_set_sta_flags() local 280 set_flags = WPA_STA_SHORT_PREAMBLE | WPA_STA_WMM | WPA_STA_MFP; in hostapd_set_sta_flags() 284 set_flags |= WPA_STA_AUTHORIZED; in hostapd_set_sta_flags() 285 flags_or = total_flags & set_flags; in hostapd_set_sta_flags() 286 flags_and = total_flags | ~set_flags; in hostapd_set_sta_flags()
|
/third_party/python/Lib/ |
D | mailbox.py | 1556 def set_flags(self, flags): member in MaildirMessage 1562 self.set_flags(''.join(set(self.get_flags()) | set(flag))) 1567 self.set_flags(''.join(set(self.get_flags()) - set(flag))) 1594 message.set_flags(self.get_flags()) 1665 def set_flags(self, flags): member in _mboxMMDFMessage 1689 self.set_flags(''.join(set(self.get_flags()) | set(flag))) 1694 self.set_flags(''.join(set(self.get_flags()) - set(flag))) 1719 message.set_flags(self.get_flags())
|
/third_party/cef/include/capi/ |
D | cef_request_capi.h | 179 void(CEF_CALLBACK* set_flags)(struct _cef_request_t* self, int flags);
|
/third_party/rust/crates/rust-openssl/openssl/src/x509/ |
D | verify.rs | 96 pub fn set_flags(&mut self, flags: X509VerifyFlags) -> Result<(), ErrorStack> { in set_flags() method
|
D | store.rs | 124 pub fn set_flags(&mut self, flags: X509VerifyFlags) -> Result<(), ErrorStack> { in set_flags() method
|
/third_party/cef/libcef/browser/osr/ |
D | motion_event_osr.cc | 93 set_flags(touch.modifiers); in OnTouch()
|
/third_party/mesa3d/src/compiler/glsl/ |
D | glsl_parser_extras.cpp | 625 void set_flags(_mesa_glsl_parse_state *state, ext_behavior behavior) const; 805 void _mesa_glsl_extension::set_flags(_mesa_glsl_parse_state *state, in set_flags() function in _mesa_glsl_extension 876 _mesa_glsl_supported_extensions[i].set_flags(state, behavior); in _mesa_glsl_process_extension() 886 extension->set_flags(state, behavior); in _mesa_glsl_process_extension() 900 extension->set_flags(state, behavior); in _mesa_glsl_process_extension()
|
/third_party/nghttp2/src/ |
D | shrpx_log.h | 193 void set_flags(int flags) { flags_ = flags; } in set_flags() function
|
/third_party/rust/crates/bindgen/bindgen-integration/src/ |
D | lib.rs | 88 third.set_flags(12345); in test_bitfields_third()
|
/third_party/cef/libcef_dll/cpptoc/ |
D | request_cpptoc.cc | 426 GetStruct()->set_flags = request_set_flags; in CefRequestCppToC()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/ |
D | RDFGraph.h | 305 static uint16_t set_flags(uint16_t A, uint16_t F) { in set_flags() function 461 void setFlags(uint16_t F) { setAttrs(NodeAttrs::set_flags(getAttrs(), F)); } in setFlags()
|
/third_party/pcre2/pcre2/src/sljit/ |
D | sljitNativeARM_64.c | 645 goto set_flags; in emit_op_imm() 702 goto set_flags; in emit_op_imm() 716 goto set_flags; in emit_op_imm() 733 goto set_flags; in emit_op_imm() 850 set_flags: in emit_op_imm()
|