Home
last modified time | relevance | path

Searched refs:destination (Results 1 – 25 of 431) sorted by relevance

12345678910>>...18

/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/syslog-ng/files/
H A Dsyslog-ng.conf.sysvinit38 destination d_auth { file("/var/log/auth.log"); };
39 destination d_cron { file("/var/log/cron.log"); };
40 destination d_daemon { file("/var/log/daemon.log"); };
41 destination d_kern { file("/var/log/kern.log"); };
42 destination d_lpr { file("/var/log/lpr.log"); };
43 destination d_mail { file("/var/log/mail.log"); };
44 destination d_syslog { file("/var/log/syslog"); };
45 destination d_user { file("/var/log/user.log"); };
46 destination d_uucp { file("/var/log/uucp.log"); };
50 destination d_mailinfo { file("/var/log/mail/mail.info"); };
[all …]
H A Dsyslog-ng.conf.systemd38 destination d_auth { file("/var/log/auth.log"); };
39 destination d_cron { file("/var/log/cron.log"); };
40 destination d_daemon { file("/var/log/daemon.log"); };
41 destination d_kern { file("/var/log/kern.log"); };
42 destination d_lpr { file("/var/log/lpr.log"); };
43 destination d_mail { file("/var/log/mail.log"); };
44 destination d_syslog { file("/var/log/syslog"); };
45 destination d_user { file("/var/log/user.log"); };
46 destination d_uucp { file("/var/log/uucp.log"); };
50 destination d_mailinfo { file("/var/log/mail/mail.info"); };
[all …]
/openbmc/linux/drivers/acpi/acpica/
H A Drsmisc.c41 void *destination; in acpi_rs_convert_aml_to_resource() local
80 destination = in acpi_rs_convert_aml_to_resource()
105 ACPI_SET8(destination, in acpi_rs_convert_aml_to_resource()
113 ACPI_SET8(destination, in acpi_rs_convert_aml_to_resource()
121 ACPI_SET8(destination, in acpi_rs_convert_aml_to_resource()
129 ACPI_SET8(destination, in acpi_rs_convert_aml_to_resource()
136 ACPI_SET8(destination, item_count); in acpi_rs_convert_aml_to_resource()
145 ACPI_SET16(destination, item_count); in acpi_rs_convert_aml_to_resource()
158 ACPI_SET16(destination, item_count); in acpi_rs_convert_aml_to_resource()
164 ACPI_SET8(destination, item_count); in acpi_rs_convert_aml_to_resource()
[all …]
H A Drsutils.c96 acpi_rs_move_data(void *destination, void *source, u16 item_count, u8 move_type) in acpi_rs_move_data() argument
115 memcpy(destination, source, item_count); in acpi_rs_move_data()
126 ACPI_MOVE_16_TO_16(&ACPI_CAST_PTR(u16, destination)[i], in acpi_rs_move_data()
132 ACPI_MOVE_32_TO_32(&ACPI_CAST_PTR(u32, destination)[i], in acpi_rs_move_data()
138 ACPI_MOVE_64_TO_64(&ACPI_CAST_PTR(u64, destination)[i], in acpi_rs_move_data()
246 static u16 acpi_rs_strcpy(char *destination, char *source) in acpi_rs_strcpy() argument
253 destination[i] = source[i]; in acpi_rs_strcpy()
256 destination[i] = 0; in acpi_rs_strcpy()
/openbmc/openbmc/poky/scripts/
H A Doe-publish-sdk37 destination = args.dest
38 logger.debug("target_sdk = %s, update_server = %s" % (target_sdk, destination))
49 if ':' in destination:
51 host, destdir = destination.split(':')
55 dest_sdk = os.path.join(destination, sdk_basename)
56 destdir = destination
61 mkdir(destination)
74 if (os.stat(target_sdk).st_dev == os.stat(destination).st_dev):
79 cmd = "scp %s %s" % (target_sdk, destination)
82 logger.error("scp %s %s failed" % (target_sdk, destination))
[all …]
/openbmc/linux/Documentation/sound/cards/
H A Daudigy-mixer.rst22 neutral position leaving the signal unchanged. Note that if the same destination
240 This control specifies the destination - FX-bus accumulators. There are 24
243 * 0 - mono, A destination (FX-bus 0-63), default 0
244 * 1 - mono, B destination (FX-bus 0-63), default 1
245 * 2 - mono, C destination (FX-bus 0-63), default 2
246 * 3 - mono, D destination (FX-bus 0-63), default 3
247 * 4 - mono, E destination (FX-bus 0-63), default 4
248 * 5 - mono, F destination (FX-bus 0-63), default 5
249 * 6 - mono, G destination (FX-bus 0-63), default 6
250 * 7 - mono, H destination (FX-bus 0-63), default 7
[all …]
H A Dsb-live-mixer.rst36 neutral position leaving the signal unchanged. Note that if the same destination
271 This control specifies the destination - FX-bus accumulators. There are
274 * 0 - mono, A destination (FX-bus 0-15), default 0
275 * 1 - mono, B destination (FX-bus 0-15), default 1
276 * 2 - mono, C destination (FX-bus 0-15), default 2
277 * 3 - mono, D destination (FX-bus 0-15), default 3
278 * 4 - left, A destination (FX-bus 0-15), default 0
279 * 5 - left, B destination (FX-bus 0-15), default 1
280 * 6 - left, C destination (FX-bus 0-15), default 2
281 * 7 - left, D destination (FX-bus 0-15), default 3
[all …]
/openbmc/phosphor-ipmi-flash/tools/test/
H A Dio_unittest.cpp34 char destination; in TEST_F() local
35 EXPECT_FALSE(devmem->read(/*offset*/ 0, /*length*/ 1, &destination)); in TEST_F()
46 char destination; in TEST_F() local
47 EXPECT_FALSE(devmem->read(/*offset*/ 0, /*length*/ 1, &destination)); in TEST_F()
60 char destination = 'b'; in TEST_F() local
61 EXPECT_TRUE(devmem->read(/*offset*/ 0, /*length*/ 1, &destination)); in TEST_F()
62 EXPECT_THAT(destination, Eq('a')); in TEST_F()
88 char destination = 'b'; in TEST_F() local
92 .WillOnce(Return(&destination)); in TEST_F()
98 EXPECT_THAT(destination, Eq('a')); in TEST_F()
[all …]
H A Dtools_helper_unittest.cpp112 char destination; in TEST_F() local
114 EXPECT_EQ(&destination, in TEST_F()
115 memcpyAligned(&destination, &source, sizeof(source))); in TEST_F()
116 EXPECT_EQ(destination, source); in TEST_F()
122 char destination[14] = "xxxxxxxxxxxxx"; in TEST_F() local
124 EXPECT_EQ(&destination, in TEST_F()
125 memcpyAligned(&destination, &source, sizeof(source))); in TEST_F()
126 EXPECT_EQ(0, memcmp(&destination, &source, sizeof(source))); in TEST_F()
/openbmc/qemu/scripts/
H A Dmake-release50 destination=qemu-${version}
53 "${src}" ${destination}
55 pushd ${destination}
84 tar "${exclude[@]}" -cJf ${destination}.tar.xz ${destination}
85 rm -rf ${destination}
/openbmc/linux/drivers/gpu/drm/i915/
H A Dintel_sbi.c14 enum intel_sbi_destination destination, in intel_sbi_rw() argument
33 if (destination == SBI_ICLK) in intel_sbi_rw()
61 enum intel_sbi_destination destination) in intel_sbi_read() argument
65 intel_sbi_rw(i915, reg, destination, &result, true); in intel_sbi_read()
71 enum intel_sbi_destination destination) in intel_sbi_write() argument
73 intel_sbi_rw(i915, reg, destination, &value, false); in intel_sbi_write()
H A Dintel_sbi.h19 enum intel_sbi_destination destination);
21 enum intel_sbi_destination destination);
/openbmc/linux/Documentation/admin-guide/device-mapper/
H A Ddm-clone.rst11 existing, read-only source device into a writable destination device: It
18 and the copy of the source device to the destination device happens in the
27 replaced, e.g., by a linear table, mapping directly to the destination device.
36 The process of filling a region of the destination device with data from
38 source to the destination device.
40 Once a region gets hydrated we redirect all I/O regarding it to the destination
55 2. A destination device - the destination of the hydration, which will become a
59 destination device, i.e., which regions have already been hydrated, or have
62 The size of the destination device must be at least equal to the size of the
68 dm-clone divides the source and destination devices in fixed sized regions.
[all …]
/openbmc/linux/drivers/scsi/aic7xxx/aicasm/
H A Daicasm_insformat.h52 destination : 9, member
60 destination : 9,
71 destination : 9, member
79 destination : 9,
107 destination : 9, member
115 destination : 9,
/openbmc/webui-vue/src/views/Settings/SnmpAlerts/
H A DSnmpAlerts.vue74 <modal-add-destination @ok="onModalOk" />
148 // transform destination data to table data
150 const [destination, dataWithProtocol, dataWithoutProtocol] = [
155 //condition to check if destination comes with protocol or not
156 const conditionForProtocolCheck = destination.includes('://');
188 const destination = port
192 Destination: destination,
204 this.$bvModal.show('add-destination');
206 initModalDeleteDestination(destination) {
210 destination: destination.id,
[all …]
/openbmc/linux/Documentation/devicetree/bindings/dma/
H A Dadi,axi-dmac.txt22 adi,destination-bus-width: Width of the source or destination bus in bits.
24 adi,destination-bus-type: Type of the source or destination bus. Must be one
57 adi,destination-bus-width = <64>;
58 adi,destination-bus-type = <ADI_AXI_DMAC_TYPE_FIFO>;
/openbmc/linux/arch/m68k/fpsp040/
H A Dsto_res.S6 | users destination register then fp0 is moved to the
7 | correct floating-point destination register. fp0 and fp1
14 | Output: moves the result to the true destination reg or mem
16 | Modifies: destination floating point register
34 bfextu CMDREG1B(%a6){#13:#3},%d0 |extract cos destination
67 bfextu CMDREG1B(%a6){#6:#3},%d0 |extract destination register
H A Dx_ovfl.S10 | destination format.
15 | destination. If the instruction is not move_out, then the
16 | destination is not affected. For 68881 compatibility, the
17 | following values should be stored at the destination, based
/openbmc/openbmc-test-automation/lib/
H A Devent_notification_utils.robot35 … ${destination}= Redfish.Get Attribute /redfish/v1/EventService/Subscriptions/${id} Destination
37 ${dest_ip}= Get Regexp Matches ${destination} .*://(.*):.* 1
43 [Documentation] Delete event subscription with non-pinging destination IPs.
48 … ${destination}= Redfish.Get Attribute /redfish/v1/EventService/Subscriptions/${id} Destination
49 ${dest_ip}= Get Regexp Matches ${destination} .*://(.*):.* 1
/openbmc/qemu/docs/devel/migration/
H A Dpostcopy.rst12 In postcopy the destination CPUs are started before all the memory has been
23 destination) prior to the start of migration:
39 separately for each vCPU. These values are calculated on destination
41 command on destination monitor:
53 the destination is waiting for).
67 if it hasn't had the start command; here the destination
70 The destination will fail early in migration at this point if the
85 the destination state to Listen, and starts a new thread
89 reception, the destination now 'sensitises' the RAM to detect
95 POSTCOPY_RUN causes the destination to synchronise all
[all …]
/openbmc/phosphor-ipmi-flash/tools/
H A Dhelper.cpp147 void* memcpyAligned(void* destination, const void* source, std::size_t size) in memcpyAligned() argument
152 if (!(reinterpret_cast<std::uintptr_t>(destination) % in memcpyAligned()
157 auto dest64 = reinterpret_cast<volatile std::uint64_t*>(destination); in memcpyAligned()
168 auto destMem8 = reinterpret_cast<volatile std::uint8_t*>(destination) + in memcpyAligned()
176 return destination; in memcpyAligned()
H A Dio.cpp17 void* const destination) in read() argument
45 std::memcpy(destination, alignedSource, length); in read()
110 void* const destination) in read() argument
120 int ret = sys->pread(ppcMemFd, destination, length, offset); in read()
/openbmc/linux/Documentation/ABI/testing/
H A Dsysfs-class-rapidio10 NOTE: An mport ID is not a RapidIO destination ID assigned to a
21 0 = small (8-bit destination ID, max. 256 devices),
23 1 = large (16-bit destination ID, max. 65536 devices).
32 (RO) reports RapidIO destination ID assigned to the given
34 that no valid destination ID have been assigned to the mport
36 only fabric enumerating mports have a valid destination ID
/openbmc/openbmc/poky/bitbake/lib/toaster/toastergui/static/js/
H A Djquery.treetable.js311 Tree.prototype.move = function(node, destination) { argument
320 …if (node !== destination && destination.id !== node.parentId && $.inArray(node, destination.ancest…
321 node.setParent(destination);
322 this._moveRows(node, destination);
391 Tree.prototype._moveRows = function(node, destination) { argument
394 node.row.insertAfter(destination.row);
531 var destination, node;
534 destination = this.data("treetable").tree[destinationId];
535 this.data("treetable").move(node, destination);
/openbmc/linux/arch/xtensa/boot/boot-redboot/
H A Dbootstrap.S188 # abi_arg0 destination
189 # abi_arg1 maximum size of destination
202 # abi_arg0 destination start
203 # abi_arg1 maximum size of destination
206 # abi_arg4 destination end

12345678910>>...18