Home
last modified time | relevance | path

Searched refs:weak (Results 1 – 25 of 134) sorted by relevance

123456

/openbmc/u-boot/common/
H A Dkgdb_stubs.c15 __attribute__((weak))
21 __attribute__((weak))
27 __attribute__((weak))
35 __attribute__((weak))
41 __attribute__((weak))
47 __attribute__((weak))
53 __attribute__((weak))
/openbmc/u-boot/arch/arm/cpu/armv7/
H A Dpsci.S42 .weak psci_fiq_enter
47 .weak default_psci_vector
87 .weak psci_version
88 .weak psci_cpu_suspend
89 .weak psci_cpu_off
90 .weak psci_cpu_on
91 .weak psci_affinity_info
92 .weak psci_migrate
93 .weak psci_migrate_info_type
94 .weak psci_migrate_info_up_cpu
[all …]
/openbmc/u-boot/include/
H A Dmalloc.h862 #pragma weak calloc = __libc_calloc
863 #pragma weak free = __libc_free
864 #pragma weak cfree = __libc_free
865 #pragma weak malloc = __libc_malloc
866 #pragma weak memalign = __libc_memalign
867 #pragma weak realloc = __libc_realloc
868 #pragma weak valloc = __libc_valloc
869 #pragma weak pvalloc = __libc_pvalloc
870 #pragma weak mallinfo = __libc_mallinfo
871 #pragma weak mallopt = __libc_mallopt
/openbmc/u-boot/board/freescale/p2041rdb/
H A Dcpld.c26 u8 cpld_read(unsigned int reg) __attribute__((weak, alias("__cpld_read")));
35 __attribute__((weak, alias("__cpld_write")));
44 void cpld_reset(void) __attribute__((weak, alias("__cpld_reset")));
58 __attribute__((weak, alias("__cpld_set_altbank")));
68 __attribute__((weak, alias("__cpld_set_defbank")));
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-support/open-vm-tools/open-vm-tools/
H A D0011-Use-off64_t-instead-of-__off64_t.patch24 - __off64_t offset) __attribute__ ((weak));
25 + off64_t offset) __attribute__ ((weak));
28 - __off64_t offset) __attribute__ ((weak));
29 + off64_t offset) __attribute__ ((weak));
/openbmc/u-boot/board/freescale/common/
H A Dngpixis.c44 u8 pixis_read(unsigned int reg) __attribute__((weak, alias("__pixis_read")));
53 __attribute__((weak, alias("__pixis_write")));
64 void pixis_reset(void) __attribute__((weak, alias("__pixis_reset")));
76 void pixis_bank_reset(void) __attribute__((weak, alias("__pixis_bank_reset")));
93 void clear_altbank(void) __attribute__((weak, alias("__clear_altbank")));
116 void set_altbank(void) __attribute__((weak, alias("__set_altbank")));
/openbmc/u-boot/arch/arm/mach-rmobile/
H A Dcpu_info.c34 __attribute__((weak, alias("__rmobile_get_cpu_type")));
41 __attribute__((weak, alias("__rmobile_get_cpu_rev_integer")));
48 __attribute__((weak, alias("__rmobile_get_cpu_rev_fraction")));
/openbmc/bmcweb/features/virtual_media/
H A Dvm_websocket.hpp244 static void afterMount(const std::weak_ptr<NbdProxyServer>& weak, in afterMount()
248 std::shared_ptr<NbdProxyServer> self = weak.lock(); in afterMount()
263 static void afterAccept(const std::weak_ptr<NbdProxyServer>& weak, in afterAccept()
275 std::shared_ptr<NbdProxyServer> self = weak.lock(); in afterAccept()
293 [weak{weak_from_this()}](const boost::system::error_code& ec, in run()
295 afterMount(weak, ec, isBinary); in run()
311 static void afterSendEx(const std::weak_ptr<NbdProxyServer>& weak) in afterSendEx()
313 std::shared_ptr<NbdProxyServer> self2 = weak.lock(); in afterSendEx()
321 void afterRead(const std::weak_ptr<NbdProxyServer>& weak, in afterRead()
330 std::shared_ptr<NbdProxyServer> self = weak.lock(); in afterRead()
[all …]
/openbmc/libpldm/src/
H A Dcompiler.h24 static_assert(__has_attribute(weak), "`weak` attribute is required");
40 #define LIBPLDM_CC_WEAK __attribute__((weak))
/openbmc/bmcweb/features/kvm/
H A Dkvm_websocket.hpp86 [this, weak(weak_from_this())](const boost::system::error_code& ec, in doRead()
88 auto self = weak.lock(); in doRead()
138 [this, weak(weak_from_this())](const boost::system::error_code& ec, in doWrite()
140 auto self = weak.lock(); in doWrite()
/openbmc/u-boot/arch/riscv/lib/
H A Dinterrupts.c98 __attribute__((weak)) void external_interrupt(struct pt_regs *regs) in external_interrupt()
102 __attribute__((weak)) void timer_interrupt(struct pt_regs *regs) in timer_interrupt()
/openbmc/openbmc/poky/meta/recipes-graphics/xorg-lib/
H A Dlibpthread-stubs_0.5.bb1 SUMMARY = "Library that provides weak aliases for pthread functions"
2 DESCRIPTION = "This library provides weak aliases for pthread functions \
/openbmc/u-boot/arch/arm/mach-omap2/omap4/
H A Dsdram_elpida.c129 __attribute__((weak, alias("emif_get_reg_dump_sdp")));
145 __attribute__((weak, alias("emif_get_dmm_regs_sdp")));
185 __attribute__((weak, alias("emif_get_device_details_sdp")));
303 __attribute__((weak, alias("emif_get_device_timings_sdp")));
/openbmc/u-boot/doc/
H A DREADME.cfi1 The common CFI driver provides this weak default implementation for
16 __attribute__((weak,alias("__flash_cmd_reset")));
19 In this case, board-specific code can override this weak default
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-benchmark/libhugetlbfs/files/
H A D0009-shm.c-Mark-glibc-specific-changes-so.patch23 __attribute__((weak)) __THROW __nonnull ((2));
24 extern char *dlerror (void) __attribute__((weak)) __THROW;
/openbmc/dbus-sensors/src/nvidia-gpu/
H A DNvidiaSmaDevice.cpp64 [weak{weak_from_this()}](const boost::system::error_code& ec) { in read()
65 std::shared_ptr<SmaDevice> self = weak.lock(); in read()
H A DNvidiaGpuDevice.cpp176 [weak{weak_from_this()}](const std::error_code& ec, in getNextThermalParameter()
178 std::shared_ptr<GpuDevice> self = weak.lock(); in getNextThermalParameter()
227 [weak{weak_from_this()}](const boost::system::error_code& ec) { in read()
228 std::shared_ptr<GpuDevice> self = weak.lock(); in read()
H A DNvidiaDriverInformation.cpp112 [weak{weak_from_this()}](const std::error_code& ec, in update()
114 std::shared_ptr<NvidiaDriverInformation> self = weak.lock(); in update()
H A DNvidiaPcieDevice.cpp101 [weak{weak_from_this()}](const std::error_code& ec, in getPciePortCounts()
103 std::shared_ptr<PcieDevice> self = weak.lock(); in getPciePortCounts()
161 [portNumber, weak{weak_from_this()}](const std::error_code& ec, in getNetworkPortAddresses()
163 std::shared_ptr<PcieDevice> self = weak.lock(); in getNetworkPortAddresses()
H A DInventory.cpp166 [weak{weak_from_this()}, propertyId](const std::error_code& ec, in sendInventoryPropertyRequest()
168 std::shared_ptr<Inventory> self = weak.lock(); in sendInventoryPropertyRequest()
318 [weak{weak_from_this()}](const boost::system::error_code& ec) { in handleInventoryPropertyResponse()
319 std::shared_ptr<Inventory> self = weak.lock(); in handleInventoryPropertyResponse()
/openbmc/dbus-sensors/src/mctp/
H A DMCTPEndpoint.cpp52 const std::weak_ptr<MCTPDDevice>& weak, const std::string& objpath, in onEndpointInterfacesRemoved() argument
64 if (auto self = weak.lock()) in onEndpointInterfacesRemoved()
99 auto onSetup = [weak{weak_from_this()}, added{std::move(added)}]( in setup()
109 if (auto self = weak.lock()) in setup()
295 [weak{weak_from_this()}, in subscribe()
297 if (auto self = weak.lock()) in subscribe()
309 [weak{weak_from_this()}, in subscribe()
321 if (auto self = weak.lock()) in subscribe()
H A DMCTPReactor.cpp42 [weak{weak_from_this()}](const std::shared_ptr<MCTPEndpoint>& ep) { in trackEndpoint()
45 if (auto self = weak.lock()) in trackEndpoint()
136 dev->setup([weak{weak_from_this()}, wdev = std::weak_ptr<MCTPDevice>(dev)]( in setupEndpoint()
139 auto self = weak.lock(); in setupEndpoint()
/openbmc/u-boot/post/drivers/
H A Dmemory.c469 __attribute__((weak))
485 __attribute__((weak))
491 __attribute__((weak))
497 __attribute__((weak))
/openbmc/bmcweb/features/serial/
H A Dobmc_console.hpp71 [weak(weak_from_this())](const boost::beast::error_code& ec, in doWrite()
73 std::shared_ptr<ConsoleHandler> self = weak.lock(); in doWrite()
97 static void afterSendEx(const std::weak_ptr<ConsoleHandler>& weak) in afterSendEx() argument
99 std::shared_ptr<ConsoleHandler> self = weak.lock(); in afterSendEx()
/openbmc/u-boot/drivers/usb/musb/
H A Dmusb_core.c117 __attribute__((weak))
142 __attribute__((weak))

123456