| /OK3568_Linux_fs/yocto/poky/meta/recipes-connectivity/bind/bind-9.18.11/ |
| H A D | conf.patch | 7 diff -urN bind-9.3.1.orig/conf/db.0 bind-9.3.1/conf/db.0 8 --- bind-9.3.1.orig/conf/db.0 1970-01-01 01:00:00.000000000 +0100 9 +++ bind-9.3.1/conf/db.0 2005-07-10 22:14:00.000000000 +0200 12 +; BIND reverse data file for broadcast zone 23 diff -urN bind-9.3.1.orig/conf/db.127 bind-9.3.1/conf/db.127 24 --- bind-9.3.1.orig/conf/db.127 1970-01-01 01:00:00.000000000 +0100 25 +++ bind-9.3.1/conf/db.127 2005-07-10 22:14:00.000000000 +0200 28 +; BIND reverse data file for local loopback interface 40 diff -urN bind-9.3.1.orig/conf/db.empty bind-9.3.1/conf/db.empty 41 --- bind-9.3.1.orig/conf/db.empty 1970-01-01 01:00:00.000000000 +0100 [all …]
|
| H A D | bind-ensure-searching-for-json-headers-searches-sysr.patch | 4 Subject: [PATCH] bind: ensure searching for json headers searches sysroot 6 Bind can fail configure by detecting headers w/o libs[1], or 10 Rerun configure task after fixing this. The path was 'build/tmp/work/core2-64-poky-linux/bind/9.10.… 12 ERROR: Logfile of failure stored in: build/tmp/work/core2-64-poky-linux/bind/9.10.2-r1/temp/log.do_… 13 ERROR: Task 5 (meta/recipes-connectivity/bind/bind_9.10.2.bb, do_configure) failed with exit code '… 18 /meta/recipes-connectivity/bind/bind_9.10.2.bb, do_configure 20 One way to fix it would be to unconditionally disable json in bind
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/platform/default/mbgl/storage/ |
| H A D | offline_database.cpp | 232 accessedQuery.bind(1, util::now()); in getResource() 233 accessedQuery.bind(2, resource.url); in getResource() 245 query.bind(1, resource.url); in getResource() 275 query.bind(1, resource.url); in hasResource() 297 notModifiedQuery.bind(1, util::now()); in putResource() 298 notModifiedQuery.bind(2, response.expires); in putResource() 299 notModifiedQuery.bind(3, response.mustRevalidate); in putResource() 300 notModifiedQuery.bind(4, resource.url); in putResource() 320 updateQuery.bind(1, int(resource.kind)); in putResource() 321 updateQuery.bind(2, response.etag); in putResource() [all …]
|
| /OK3568_Linux_fs/buildroot/package/gnuradio/ |
| H A D | 0002-boost_qualify_placeholders_with_their_full_namespace.patch | 67 @@ -94,7 +94,7 @@ must then bind this port to the message handler. For this, we use 68 Boost's 'bind' function: 71 - boost::bind(&block_class::message_handler_function, this, _1)); 72 + boost::bind(&block_class::message_handler_function, this, boost::placeholders::_1)); 80 - boost::bind(&message_debug_impl::print, this, _1)); 81 + boost::bind(&message_debug_impl::print, this, boost::placeholders::_1)); 85 - boost::bind(&message_debug_impl::store, this, _1)); 86 + boost::bind(&message_debug_impl::store, this, boost::placeholders::_1)); 90 - boost::bind(&message_debug_impl::print_pdu, this, _1)); 91 + boost::bind(&message_debug_impl::print_pdu, this, boost::placeholders::_1)); [all …]
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-connectivity/bind/ |
| H A D | bind_9.18.11.bb | 2 HOMEPAGE = "https://www.isc.org/bind/" 3 DESCRIPTION = "BIND 9 provides a full-featured Domain Name Server system" 16 file://make-etc-initd-bind-stop-work.patch \ 18 file://bind-ensure-searching-for-json-headers-searches-sysr.patch \ 20 file://0001-avoid-start-failure-with-bind-user.patch \ 29 # Issue only affects dhcpd with recent bind versions. We don't ship dhcpd anymore 44 --sysconfdir=${sysconfdir}/bind \ 53 USERADD_PARAM:${PN} = "--system --home ${localstatedir}/cache/bind --no-create-home \ 54 --user-group bind" 56 INITSCRIPT_NAME = "bind" [all …]
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-security/nmap/files/ |
| H A D | 0002-Fix-building-with-libc.patch | 20 /* Bind to local address and the specified port */ 21 - if( bind(master_sd, (struct sockaddr *)&server_addr6, sizeof(server_addr6)) != 0 ){ 22 + if( ::bind(master_sd, (struct sockaddr *)&server_addr6, sizeof(server_addr6)) != 0 ){ 23 …nping_warning(QT_3, "Failed to bind to source address %s. Trying to bind to port %d...", IPtoa(ser… 24 /* If the bind failed for the supplied address, just try again with in6addr_any */ 27 - if( bind(master_sd, (struct sockaddr *)&server_addr6, sizeof(server_addr6)) != 0 ){ 28 + if( ::bind(master_sd, (struct sockaddr *)&server_addr6, sizeof(server_addr6)) != 0 ){ 29 nping_fatal(QT_3, "Could not bind to port %d (%s).", port, strerror(errno)); 38 /* Bind to local address and the specified port */ 39 - if( bind(master_sd, (struct sockaddr *)&server_addr4, sizeof(server_addr4)) != 0 ){ [all …]
|
| /OK3568_Linux_fs/kernel/tools/testing/selftests/media_tests/ |
| H A D | media_dev_allocator.sh | 6 echo "Media Device Allocator testing: unbind and bind" 37 echo "Test bind both devices - start" 38 echo "Running bind of $MDEV from $MDRIVER" 39 echo $MDEV > $MDRIVER/bind; 44 echo "Running bind of $ADEV from $ADRIVER" 45 echo $ADEV > $ADRIVER/bind; 50 echo "Test bind both devices - end" 54 echo "Test unbind $MDEV - bind $MDEV - unbind $ADEV - bind $ADEV start" 64 echo "Running bind of $MDEV from $MDRIVER" 65 echo $MDEV > $MDRIVER/bind; [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/bind/ |
| H A D | mem_fn.hpp | 21 // See http://www.boost.org/libs/bind/mem_fn.html for documentation. 47 #include <boost/bind/mem_fn_template.hpp> 57 #include <boost/bind/mem_fn_template.hpp> 69 #include <boost/bind/mem_fn_template.hpp> 81 #include <boost/bind/mem_fn_template.hpp> 100 #include <boost/bind/mem_fn_template.hpp> 110 #include <boost/bind/mem_fn_template.hpp> 122 #include <boost/bind/mem_fn_template.hpp> 134 #include <boost/bind/mem_fn_template.hpp> 152 #include <boost/bind/mem_fn_vw.hpp> [all …]
|
| /OK3568_Linux_fs/u-boot/include/linux/usb/ |
| H A D | composite.h | 44 * @strings: tables of strings, keyed by identifiers assigned during bind() 47 * string identifiers assigned during @bind(). If this pointer is null, 50 * string identifiers assigned during @bind(). If this pointer is null, 53 * string identifiers assigned during @bind(). If this pointer is null, 57 * @bind: Before the gadget can register, all of its functions bind() to the 60 * @unbind: Reverses @bind; called as a side effect of unregistering the 77 * causes @bind() to be called so resources can be allocated as part of 106 /* REVISIT: bind() functions can be marked __init, which 109 * Related: unbind() may kfree() but bind() won't... 112 /* configuration management: bind/unbind */ [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/mpl/ |
| H A D | bind.hpp | 38 #include <boost/mpl/aux_/config/bind.hpp> 48 # define BOOST_MPL_PREPROCESSED_HEADER bind.hpp 167 struct resolve_bind_arg< bind<F,AUX778076_BIND_PARAMS(T)>,AUX778076_BIND_PARAMS(U) > 169 typedef bind<F,AUX778076_BIND_PARAMS(T)> f_; 251 // in case if we use 'aux::type_wrapper< bind<...> >' here, and all 252 // 'bind' instantiations form a complete type anyway 257 aux::yes_tag is_bind_helper(bind<F,AUX778076_BIND_PARAMS(T)>*); 296 (3,(0, BOOST_MPL_LIMIT_METAFUNCTION_ARITY, <boost/mpl/bind.hpp>)) 303 # define BOOST_PP_ITERATION_PARAMS_1 (3,(3, 3, <boost/mpl/bind.hpp>)) 308 # define BOOST_PP_ITERATION_PARAMS_1 (3,(3, 3, <boost/mpl/bind.hpp>)) [all …]
|
| /OK3568_Linux_fs/u-boot/include/dm/ |
| H A D | root.h | 35 * dm_scan_platdata() - Scan all platform data and bind drivers 39 * @pre_reloc_only: If true, bind only drivers with the DM_FLAG_PRE_RELOC 40 * flag. If false bind all drivers. 46 * dm_scan_fdt() - Scan the device tree and bind drivers 52 * @pre_reloc_only: If true, bind only drivers with the DM_FLAG_PRE_RELOC 53 * flag. If false bind all drivers. 59 * dm_extended_scan_fdt() - Scan the device tree and bind drivers 66 * @pre_reloc_only: If true, bind only drivers with the DM_FLAG_PRE_RELOC 67 * flag. If false bind all drivers. 80 * @pre_reloc_only: If true, bind only drivers with the DM_FLAG_PRE_RELOC [all …]
|
| /OK3568_Linux_fs/buildroot/package/uhd/ |
| H A D | 0002-host-fix-build-boost-173.patch | 4 Subject: [PATCH] boost: Include bind.hpp where used, add 8 - Grepped for files that use boost::bind, but don't include 9 boost/bind.hpp. Changed all of those to include bind.hpp 11 about using bind placeholders in the global namespace. 13 Background: boost/bind.hpp is a convenience header that pulls the Boost 14 bind placeholders into the global namespace, but that's deprecated 16 no longer uses Boost.Bind), so this fixes build failures with modern 91 +#include <boost/bind.hpp> 103 +#include <boost/bind.hpp> 115 +#include <boost/bind.hpp> [all …]
|
| /OK3568_Linux_fs/kernel/tools/testing/selftests/net/ |
| H A D | reuseaddr_ports_exhausted.c | 5 * Rules to bind sockets to the same port when all ephemeral ports are 8 * 1. if there are TCP_LISTEN sockets on the port, fail to bind. 9 * 2. if there are sockets without SO_REUSEADDR, fail to bind. 10 * 3. if SO_REUSEADDR is disabled, fail to bind. 12 * succeed to bind. 15 * succeed to bind. 16 * 6. fail to bind. 73 if (bind(fd, (struct sockaddr *)&local_addr, len) == -1) { in bind_port() 92 ASSERT_NE(-1, fd[0]) TH_LOG("failed to bind."); in TEST() 93 EXPECT_EQ(-1, fd[1]) TH_LOG("should fail to bind."); in TEST() [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/platform/default/ |
| H A D | sqlite3.cpp | 179 template <> void Query::bind(int offset, std::nullptr_t) { in bind() function in mapbox::sqlite::Query 184 template <> void Query::bind(int offset, int8_t value) { in bind() function in mapbox::sqlite::Query 189 template <> void Query::bind(int offset, int16_t value) { in bind() function in mapbox::sqlite::Query 194 template <> void Query::bind(int offset, int32_t value) { in bind() function in mapbox::sqlite::Query 199 template <> void Query::bind(int offset, int64_t value) { in bind() function in mapbox::sqlite::Query 204 template <> void Query::bind(int offset, uint8_t value) { in bind() function in mapbox::sqlite::Query 209 template <> void Query::bind(int offset, uint16_t value) { in bind() function in mapbox::sqlite::Query 214 template <> void Query::bind(int offset, uint32_t value) { in bind() function in mapbox::sqlite::Query 219 template <> void Query::bind(int offset, float value) { in bind() function in mapbox::sqlite::Query 224 template <> void Query::bind(int offset, double value) { in bind() function in mapbox::sqlite::Query [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/platform/qt/src/ |
| H A D | sqlite3.cpp | 236 template void Query::bind(int, int64_t); 239 void Query::bind(int offset, T value) { in bind() function in mapbox::sqlite::Query 247 void Query::bind(int offset, std::nullptr_t) { in bind() function in mapbox::sqlite::Query 255 void Query::bind(int offset, int32_t value) { in bind() function in mapbox::sqlite::Query 256 bind(offset, static_cast<int64_t>(value)); in bind() 260 void Query::bind(int offset, bool value) { in bind() function in mapbox::sqlite::Query 261 bind(offset, static_cast<int>(value)); in bind() 265 void Query::bind(int offset, int8_t value) { in bind() function in mapbox::sqlite::Query 266 bind(offset, static_cast<int64_t>(value)); in bind() 270 void Query::bind(int offset, uint8_t value) { in bind() function in mapbox::sqlite::Query [all …]
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-networking/recipes-connectivity/dhcp/files/ |
| H A D | 0003-bind-Makefile.in-regenerate-configure.patch | 4 Subject: [PATCH] bind/Makefile.in: regenerate configure 12 bind/Makefile.in | 2 +- 15 diff --git a/bind/Makefile.in b/bind/Makefile.in 17 --- a/bind/Makefile.in 18 +++ b/bind/Makefile.in 21 echo Configuring BIND libraries for DHCP. ; \
|
| H A D | 0002-bind-Makefile.in-disable-backtrace.patch | 4 Subject: [PATCH] bind/Makefile.in: disable backtrace 13 bind/Makefile.in | 2 +- 16 diff --git a/bind/Makefile.in b/bind/Makefile.in 18 --- a/bind/Makefile.in 19 +++ b/bind/Makefile.in
|
| /OK3568_Linux_fs/kernel/include/linux/usb/ |
| H A D | composite.h | 121 * @strings: tables of strings, keyed by identifiers assigned during bind() 124 * string identifiers assigned during @bind(). If this pointer is null, 127 * string identifiers assigned during @bind(). If this pointer is null, 130 * string identifiers assigned during @bind(). If this 134 * interface and string identifiers assigned during @bind(). If 143 * @bind: Before the gadget can register, all of its functions bind() to the 146 * @unbind: Reverses @bind; called as a side effect of unregistering the 170 * causes @bind() to be called so resources can be allocated as part of 204 /* REVISIT: bind() functions can be marked __init, which 207 * Related: unbind() may kfree() but bind() won't... [all …]
|
| /OK3568_Linux_fs/yocto/poky/bitbake/bin/ |
| H A D | bitbake-hashserv | 27 … epilog='''The bind address is the path to a unix domain socket if it is 29 … and port in form ADDRESS:PORT. To bind to all addresses, leave 30 … the ADDRESS empty, e.g. "--bind :8686". To bind to a specific 32 "--bind [::1]:8686"''' 35 …parser.add_argument('-b', '--bind', default=DEFAULT_BIND, help='Bind address (default "%(default)s… 54 …server = hashserv.create_server(args.bind, args.database, upstream=args.upstream, read_only=args.r…
|
| /OK3568_Linux_fs/kernel/drivers/gpu/arm/mali400/mali/linux/ |
| H A D | mali_memory_defer_bind.c | 110 /* do preparetion for allocation before defer bind */ 122 MALI_DEBUG_PRINT(1, ("Can't find memory backend in defer bind!\n")); in mali_mem_defer_bind_allocation_prepare() 129 /* If the mem backend has already been bound, no need to bind again.*/ in mali_mem_defer_bind_allocation_prepare() 154 /* bind phyiscal memory to allocation 161 …MALI_DEBUG_PRINT(4, ("mali_mem_defer_bind_allocation, bind bkend = %x page num=0x%x vaddr=%x sessi… in mali_mem_defer_bind_allocation() 202 /* called in job start IOCTL to bind physical memory for each allocations 203 @ bk_list backend list to do defer bind 204 @ pages page list to do this bind 215 …MALI_DEBUG_PRINT_ERROR(("#BIND: The memsize of varying buffer not match to the pagesize of the dm… in mali_mem_defer_bind() 219 MALI_DEBUG_PRINT(4, ("#BIND: GP job=%x## \n", gp)); in mali_mem_defer_bind() [all …]
|
| /OK3568_Linux_fs/yocto/meta-qt5/recipes-qt/maliit/maliit-plugins-qt5/ |
| H A D | 0001-Do-not-use-tr1-namespace.patch | 45 - d->overrideCheck(changed_ids, d->left, std::tr1::bind(&LayoutHelper::leftPanelChanged, this, _… 46 - d->overrideCheck(changed_ids, d->right, std::tr1::bind(&LayoutHelper::rightPanelChanged, this,… 47 - d->overrideCheck(changed_ids, d->center, std::tr1::bind(&LayoutHelper::centerPanelChanged, thi… 48 - d->overrideCheck(changed_ids, d->extended, std::tr1::bind(&LayoutHelper::extendedPanelChanged,… 49 + d->overrideCheck(changed_ids, d->left, std::bind(&LayoutHelper::leftPanelChanged, this, _1, _2… 50 + d->overrideCheck(changed_ids, d->right, std::bind(&LayoutHelper::rightPanelChanged, this, _1, … 51 + d->overrideCheck(changed_ids, d->center, std::bind(&LayoutHelper::centerPanelChanged, this, _1… 52 + d->overrideCheck(changed_ids, d->extended, std::bind(&LayoutHelper::extendedPanelChanged, this…
|
| /OK3568_Linux_fs/external/security/rk_tee_user/v2/host/xtest/ |
| H A D | regression_2000.c | 294 TEE_IP_VERSION_DC, ts.bind->host, ts.bind->port, in xtest_tee_test_2001() 343 TEE_IP_VERSION_DC, ts.bind->host, ts.bind->port, in xtest_tee_test_2001() 358 TEE_IP_VERSION_DC, ts.bind->host, ts.bind->port, in xtest_tee_test_2001() 374 TEE_IP_VERSION_DC, ts.bind->host, ts.bind->port, in xtest_tee_test_2001() 453 res = socket_tcp_open(&session, TEE_IP_VERSION_DC, ts.bind->host, in xtest_tee_test_2002_thread() 454 ts.bind->port, &sh, &proto_error, &ret_orig); in xtest_tee_test_2002_thread() 583 TEE_IP_VERSION_DC, ts.bind->host, ts.bind->port, in xtest_tee_test_2003() 710 TEE_IP_VERSION_DC, ts.bind->host, ts.bind->port, in xtest_tee_test_2004() 753 TEE_IP_VERSION_DC, ts.bind->host, ts.bind->port, in xtest_tee_test_2004() 768 TEE_IP_VERSION_DC, ts.bind->host, ts.bind->port, in xtest_tee_test_2004() [all …]
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/include/c++/10.3.1/ |
| H A D | functional | 178 * function objects returned by bind(). 180 * C++11 [func.bind.isbind]. 189 * bind() expression and, if so, which placeholder it is. 191 * C++11 [func.bind.isplace]. 212 * @brief ISO C++ 2011 namespace for std::bind placeholders. 275 * Maps an argument to bind() into an actual argument to the bound 276 * function object [func.bind.bind]/10. Only the first parameter should 281 * bind expression. The first parameter is the bound argument and 293 * C++11 [func.bind.bind] p10 bullet 1. 311 * If the argument is a bind expression, we invoke the underlying [all …]
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/include/c++/10.3.1/ |
| H A D | functional | 178 * function objects returned by bind(). 180 * C++11 [func.bind.isbind]. 189 * bind() expression and, if so, which placeholder it is. 191 * C++11 [func.bind.isplace]. 212 * @brief ISO C++ 2011 namespace for std::bind placeholders. 275 * Maps an argument to bind() into an actual argument to the bound 276 * function object [func.bind.bind]/10. Only the first parameter should 281 * bind expression. The first parameter is the bound argument and 293 * C++11 [func.bind.bind] p10 bullet 1. 311 * If the argument is a bind expression, we invoke the underlying [all …]
|
| /OK3568_Linux_fs/kernel/include/linux/ |
| H A D | component.h | 18 * @bind: 21 * ready to bind the overall driver. 23 int (*bind)(struct device *comp, struct device *master, member 29 * ready to bind the overall driver, or when component_bind_all() fails 54 * @bind: 58 * ready. Usually there are 3 steps to bind an aggregate driver: 62 * 2. Bind all components to the aggregate driver by calling 74 int (*bind)(struct device *master); member
|