Home
last modified time | relevance | path

Searched refs:bind (Results 1 – 25 of 1308) sorted by relevance

12345678910>>...53

/openbmc/openbmc/poky/meta/recipes-connectivity/bind/bind/
H A Dconf.patch7 diff -urN bind-9.3.1.orig/conf/db.0 bind-9.3.1/conf/db.0
23 diff -urN bind-9.3.1.orig/conf/db.127 bind-9.3.1/conf/db.127
40 diff -urN bind-9.3.1.orig/conf/db.empty bind-9.3.1/conf/db.empty
58 diff -urN bind-9.3.1.orig/conf/db.255 bind-9.3.1/conf/db.255
74 diff -urN bind-9.3.1.orig/conf/db.local bind-9.3.1/conf/db.local
91 diff -urN bind-9.3.1.orig/conf/db.root bind-9.3.1/conf/db.root
140 diff -urN bind-9.3.1.orig/conf/named.conf bind-9.3.1/conf/named.conf
171 + file "/etc/bind/db.0";
193 diff -urN bind-9.3.1.orig/conf/named.conf.local bind-9.3.1/conf/named.conf.local
233 diff -urN bind-9.3.1.orig/conf/zones.rfc1918 bind-9.3.1/conf/zones.rfc1918
[all …]
H A Dgenerate-rndc-key.sh3 if [ ! -s /etc/bind/rndc.key ]; then
6 chown root:bind /etc/bind/rndc.key
7 chmod 0640 /etc/bind/rndc.key
H A D0001-avoid-start-failure-with-bind-user.patch4 Subject: [PATCH] avoid start failure with bind user
19 if [ ! -f /etc/bind/rndc.key ]; then
21 + chown root:bind /etc/bind/rndc.key >/dev/null 2>&1 || true
22 chmod 0640 /etc/bind/rndc.key
H A Dmake-etc-initd-bind-stop-work.patch1 bind: make "/etc/init.d/bind stop" work
22 include "/etc/bind/named.conf.local";
23 +include "/etc/bind/rndc.key" ;
34 +include "/etc/bind/rndc.key";
H A Dinit.d-add-support-for-read-only-rootfs.patch50 + mount --bind $olddir $newdir
55 + [ "$VERBOSE" != "no" ] && echo "WARN: start bind service in read-only rootfs"
56 + [ `is_on_read_only_partition /etc/bind` = "yes" ] && bind_mount /var/volatile/bind/etc /etc/bi…
57 + [ `is_on_read_only_partition /var/named` = "yes" ] && bind_mount /var/volatile/bind/named /var…
/openbmc/openbmc/poky/meta/recipes-connectivity/bind/
H A Dbind_9.18.25.bb2 HOMEPAGE = "https://www.isc.org/bind/"
56 INITSCRIPT_NAME = "bind"
63 install -d -o bind "${D}${localstatedir}/cache/bind"
64 install -d "${D}${sysconfdir}/bind"
83 echo "d /run/named 0755 bind bind - -" > ${D}${sysconfdir}/tmpfiles.d/bind.conf
88 ${sysconfdir}/bind/named.conf \
91 ${sysconfdir}/bind/db.0 \
92 ${sysconfdir}/bind/db.127 \
93 ${sysconfdir}/bind/db.empty \
94 ${sysconfdir}/bind/db.local \
[all …]
/openbmc/openbmc/meta-facebook/meta-yosemite4/recipes-phosphor/gpio/phosphor-gpio-monitor/
H A Dprobe-slot-device6 echo $HOST_BUS-0020 > /sys/bus/i2c/drivers/pca953x/bind
7 echo $HOST_BUS-0021 > /sys/bus/i2c/drivers/pca953x/bind
8 echo $HOST_BUS-0022 > /sys/bus/i2c/drivers/pca953x/bind
9 echo $HOST_BUS-0023 > /sys/bus/i2c/drivers/pca953x/bind
11 echo $HOST_VIRTUAL_BUS-0049 > /sys/bus/i2c/drivers/pca953x/bind
12 echo $HOST_VIRTUAL_BUS-0050 > /sys/bus/i2c/drivers/at24/bind
13 echo $HOST_VIRTUAL_BUS-0051 > /sys/bus/i2c/drivers/at24/bind
14 echo $HOST_VIRTUAL_BUS-0054 > /sys/bus/i2c/drivers/at24/bind
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-security/nmap/files/
H A D0002-Fix-building-with-libc.patch21 - 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 ){
29 nping_fatal(QT_3, "Could not bind to port %d (%s).", port, strerror(errno));
39 - if( bind(master_sd, (struct sockaddr *)&server_addr4, sizeof(server_addr4)) != 0 ){
40 + if( ::bind(master_sd, (struct sockaddr *)&server_addr4, sizeof(server_addr4)) != 0 ){
41 …nping_warning(QT_3, "Failed to bind to source address %s. Trying to bind to port %d...", IPtoa(ser…
42 /* If the bind failed for the supplied address, just try again with in6addr_any */
[all …]
/openbmc/openbmc/meta-openembedded/meta-networking/recipes-connectivity/dhcp/files/
H A D0003-bind-Makefile.in-regenerate-configure.patch4 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
H A D0002-bind-Makefile.in-disable-backtrace.patch4 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
/openbmc/phosphor-fan-presence/presence/
H A Deeprom_device.hpp47 std::bind(std::mem_fn(&EEPROMDevice::bindTimerExpired), this)) in EEPROMDevice()
53 void bind() in bind() function in phosphor::fan::presence::EEPROMDevice
80 std::ofstream bind{bindPath}; in bindTimerExpired() local
81 if (bind.good()) in bindTimerExpired()
85 bind << address; in bindTimerExpired()
88 if (bind.fail()) in bindTimerExpired()
/openbmc/linux/net/sched/
H A Dact_vlan.c153 if (exists && bind) in tcf_vlan_init()
163 tcf_idr_release(*a, bind); in tcf_vlan_init()
171 tcf_idr_release(*a, bind); in tcf_vlan_init()
185 tcf_idr_release(*a, bind); in tcf_vlan_init()
203 tcf_idr_release(*a, bind); in tcf_vlan_init()
211 tcf_idr_release(*a, bind); in tcf_vlan_init()
220 &act_vlan_ops, bind, flags); in tcf_vlan_init()
228 tcf_idr_release(*a, bind); in tcf_vlan_init()
272 tcf_idr_release(*a, bind); in tcf_vlan_init()
287 int bind, int ref) in tcf_vlan_dump() argument
[all …]
H A Dact_gact.c59 bool bind = flags & TCA_ACT_FLAGS_BIND; in tcf_gact_init() local
100 err = tcf_idr_check_alloc(tn, &index, a, bind); in tcf_gact_init()
103 &act_gact_ops, bind, flags); in tcf_gact_init()
110 if (bind)/* dont override defaults */ in tcf_gact_init()
113 tcf_idr_release(*a, bind); in tcf_gact_init()
145 tcf_idr_release(*a, bind); in tcf_gact_init()
186 int bind, int ref) in tcf_gact_dump() argument
193 .bindcnt = atomic_read(&gact->tcf_bindcnt) - bind, in tcf_gact_dump()
240 u32 *index_inc, bool bind, in tcf_gact_offload_act_setup() argument
243 if (bind) { in tcf_gact_offload_act_setup()
H A Dact_simple.c94 bool bind = flags & TCA_ACT_FLAGS_BIND; in tcf_simp_init() local
116 err = tcf_idr_check_alloc(tn, &index, a, bind); in tcf_simp_init()
120 if (exists && bind) in tcf_simp_init()
125 tcf_idr_release(*a, bind); in tcf_simp_init()
133 &act_simp_ops, bind, false, flags); in tcf_simp_init()
167 tcf_idr_release(*a, bind); in tcf_simp_init()
172 int bind, int ref) in tcf_simp_dump() argument
179 .bindcnt = atomic_read(&d->tcf_bindcnt) - bind, in tcf_simp_dump()
/openbmc/linux/drivers/xen/
H A Devtchn.c447 struct ioctl_evtchn_bind_virq bind; in evtchn_ioctl() local
455 if (copy_from_user(&bind, uarg, sizeof(bind))) in evtchn_ioctl()
458 bind_virq.virq = bind.virq; in evtchn_ioctl()
472 struct ioctl_evtchn_bind_interdomain bind; in evtchn_ioctl() local
476 if (copy_from_user(&bind, uarg, sizeof(bind))) in evtchn_ioctl()
481 u->restrict_domid != bind.remote_domain) in evtchn_ioctl()
498 struct ioctl_evtchn_bind_unbound_port bind; in evtchn_ioctl() local
506 if (copy_from_user(&bind, uarg, sizeof(bind))) in evtchn_ioctl()
546 struct ioctl_evtchn_bind bind; in evtchn_ioctl() local
550 if (copy_from_user(&bind, uarg, sizeof(bind))) in evtchn_ioctl()
[all …]
/openbmc/u-boot/arch/arm/mach-rockchip/rk3399/
H A Dsyscon_rk3399.c38 .bind = rk3399_syscon_bind_of_platdata,
45 .bind = rk3399_syscon_bind_of_platdata,
52 .bind = rk3399_syscon_bind_of_platdata,
59 .bind = rk3399_syscon_bind_of_platdata,
/openbmc/u-boot/arch/arm/mach-rockchip/rk3368/
H A Dsyscon_rk3368.c44 .bind = rk3368_syscon_bind_of_platdata,
51 .bind = rk3368_syscon_bind_of_platdata,
58 .bind = rk3368_syscon_bind_of_platdata,
65 .bind = rk3368_syscon_bind_of_platdata,
/openbmc/u-boot/arch/arm/mach-rockchip/rk3288/
H A Dsyscon_rk3288.c39 .bind = rk3288_syscon_bind_of_platdata,
46 .bind = rk3288_syscon_bind_of_platdata,
53 .bind = rk3288_syscon_bind_of_platdata,
60 .bind = rk3288_syscon_bind_of_platdata,
/openbmc/linux/tools/testing/selftests/media_tests/
H A Dmedia_dev_allocator.sh39 echo $MDEV > $MDRIVER/bind;
45 echo $ADEV > $ADRIVER/bind;
65 echo $MDEV > $MDRIVER/bind;
79 echo $ADEV > $ADRIVER/bind;
/openbmc/phosphor-rest-server/servers/gevent/
H A Dphosphor-gevent81 bind = gevent.socket.fromfd(FIRST_SYSTEMD_SOCKET_FD,
86 bind = ('', 443)
88 bind = ('', 80)
93 server = WSGIServer( bind, app, **kw )
/openbmc/u-boot/cmd/
H A Dbind.c201 bool bind; in do_bind_unbind() local
207 bind = (argv[0][0] == 'b'); in do_bind_unbind()
210 if (by_node && bind) { in do_bind_unbind()
214 } else if (by_node && !bind) { in do_bind_unbind()
218 } else if (!by_node && bind) { in do_bind_unbind()
224 } else if (!by_node && !bind) { in do_bind_unbind()
243 bind, 4, 0, do_bind_unbind,
/openbmc/openbmc/meta-ibm/recipes-phosphor/chassis/
H A Dvrm-control.bb13 SRC_URI:append:ibm-ac-server = " file://ir35221-unbind-bind.sh"
18 install -m 0755 ${WORKDIR}/ir35221-unbind-bind.sh ${D}${bindir}/ir35221-unbind-bind.sh
27 TMPL_ON_IRBIND = "ir35221-on-bind@.service"
28 INSTFMT_ON_IRBIND = "ir35221-on-bind@{0}.service"
/openbmc/webui-vue/src/utilities/
H A DNBDServer.js48 this.ws.onmessage = this._on_ws_message.bind(this);
49 this.ws.onopen = this._on_ws_open.bind(this);
50 this.ws.onclose = this._on_ws_close.bind(this);
51 this.ws.onerror = this._on_ws_error.bind(this);
269 }.bind(this);
276 }.bind(this);
285 [NBD_STATE_WAIT_CFLAGS]: this._handle_cflags.bind(this),
286 [NBD_STATE_WAIT_OPTION]: this._handle_option.bind(this),
287 [NBD_STATE_TRANSMISSION]: this._handle_cmd.bind(this),
/openbmc/openpower-occ-control/
H A Docc_manager.hpp83 sdpEvent, std::bind(&Manager::pollerTimerExpired, this))), in Manager()
90 std::bind(&Manager::ambientCallback, this, std::placeholders::_1)) in Manager()
94 std::bind(std::mem_fn(&Manager::updateOCCActive), this, in Manager()
96 std::bind(std::mem_fn(&Manager::sbeHRESETResult), this, in Manager()
98 std::bind(std::mem_fn(&Manager::updateOccSafeMode), this, in Manager()
107 sdpEvent, std::bind(&Manager::findAndCreateObjects, this))), in Manager()
111 sdpEvent, std::bind(&Manager::occsNotAllRunning, this))) in Manager()
117 sdpEvent, std::bind(&Manager::throttlePldmTraceExpired, this))) in Manager()
/openbmc/u-boot/test/dm/
H A Dtest-driver.c78 .bind = test_bind,
89 .bind = test_bind,
143 .bind = test_manual_bind,
153 .bind = test_manual_bind,
164 .bind = test_manual_bind,

12345678910>>...53