Searched refs:source (Results 1 - 25 of 487) sorted by last modified time

1234567891011>>

/haiku/src/add-ons/kernel/drivers/audio/emuxki/
H A Demuxki.h16 * Redistribution and use in source and binary forms, with or without
19 * 1. Redistributions of source code must retain the above copyright
269 emuxki_recsrc_t source; member in union:_emuxki_voice::__anon17
H A Demuxki.c19 * Redistribution and use in source and binary forms, with or without
22 * 1. Redistributions of source code must retain the above copyright
757 switch (voice->dataloc.source) {
1115 voice->dataloc.source = recsrc;
1178 switch (voice->dataloc.source) {
1221 switch (voice->dataloc.source) {
1348 switch (voice->dataloc.source) {
1402 switch (voice->dataloc.source) {
1449 voice->dataloc.source = EMU_RECSRC_NOTSET;
1567 voice->dataloc.source
[all...]
/haiku/src/add-ons/kernel/network/protocols/tcp/
H A DTCPEndpoint.cpp79 system_time(), PrintAddress(buffer->source), \
1491 if (_PrepareSendPath(buffer->source) != B_OK) {
1898 ", wnd %" B_PRIu32, buffer, buffer->size, PrintAddress(buffer->source),
2045 LocalAddress().CopyTo(buffer->source);
2055 buffer, buffer->size, PrintAddress(buffer->source),
H A DEndpointManager.cpp557 AddressModule()->set_to(reply->source, buffer->destination);
558 AddressModule()->set_to(reply->destination, buffer->source);
/haiku/src/kits/tracker/
H A DContainerWindow.cpp942 // look for background image info in the source for defaults
985 // look for background image info in the source for defaults
2493 BContainerWindow::ShowDropContextMenu(BPoint where, BPoseView* source) argument
2521 if (item->Command() == kMoveSelectionTo && source != NULL) {
2522 item->SetEnabled(!source->SelectedVolumeIsReadOnly()
/haiku/src/add-ons/media/plugins/ffmpeg/
H A DAVFormatReader.cpp126 StreamBase(BMediaIO* source,
156 // Since multiple StreamCookies use the same BMediaIO source, they
157 // maintain the position individually, and may need to seek the source
171 // Since different threads may read from the source,
193 StreamBase::StreamBase(BMediaIO* source, BLocker* sourceLock, argument
196 fSource(source),
910 Stream(BMediaIO* source,
947 AVFormatReader::Stream::Stream(BMediaIO* source, BLocker* streamLock) argument
949 StreamBase(source, streamLock, &fLock),
1460 fSourceLock("source
1501 BMediaIO* source = dynamic_cast<BMediaIO*>(Source()); local
1675 BMediaIO* source = dynamic_cast<BMediaIO*>(Source()); local
[all...]
/haiku/src/tools/fs_shell/
H A Dfssh.cpp868 fprintf(stderr, "Usage: %s [Options] <source> <target>\n", argv[0]);
872 const char *source = argv[argi]; local
882 // get source leaf
884 error = get_last_path_component(source, leaf, sizeof(leaf));
886 fprintf(stderr, "Error: Failed to get leaf name of source "
925 error = _kern_create_symlink(-1, target, source,
928 error = _kern_create_link(target, source);
H A Dcommand_cp.cpp873 static fssh_status_t copy_entry(FSDomain *sourceDomain, const char *source,
895 copy_file_contents(const char *source, File *sourceFile, const char *target, argument
931 source, fssh_strerror(bytesRead));
943 copy_dir_contents(FSDomain *sourceDomain, const char *source, argument
955 // compose a new source path name
956 char *sourceEntry = make_path(source, entry->d_name);
958 fprintf(stderr, "Error: Failed to allocate source path!\n");
978 fprintf(stderr, "Error reading directory `%s': %s\n", source,
988 copy_attribute(const char *source, Node *sourceNode, const char *target, argument
1011 // read data from source
1039 copy_attributes(const char *source, Node *sourceNode, const char *target, Node *targetNode) argument
1072 copy_entry(FSDomain *sourceDomain, const char *source, FSDomain *targetDomain, const char *target, const Options &options, bool dereference) argument
1377 const char *source = sources[i]; local
[all...]
/haiku/src/apps/activitymonitor/
H A DDataSource.h58 static int32 IndexOf(const DataSource* source);
H A DDataSource.cpp253 const DataSource* source = kSources[i]; local
254 if (!strcmp(source->InternalName(), internalName))
255 return source;
263 DataSource::IndexOf(const DataSource* source) argument
265 const char* name = source->Name();
/haiku/src/preferences/filetypes/
H A DIconView.h27 Icon(const Icon& source);
58 Icon& operator=(const Icon& source);
H A DIconView.cpp49 icon_source source = kNoIcon;
54 source = kOwnIcon;
56 if (source == kNoIcon) {
64 source = kApplicationIcon;
68 if (source == kNoIcon) {
74 source = kSupertypeIcon;
83 source = kSupertypeIcon;
89 if (source != kNoIcon) {
94 *_source = source;
96 return source !
104 icon_source source = kNoIcon; local
162 Icon(const Icon& source) argument
392 BBitmap* source; local
457 BBitmap* source = (width > B_LARGE_ICON && fLarge != NULL) || fMini == NULL local
487 operator =(const Icon& source) argument
[all...]
/haiku/src/add-ons/kernel/network/stack/
H A Dnet_socket.cpp1248 header->msg_namelen = min_c(nameLen, buffer->source->sa_len);
1249 memcpy(header->msg_name, buffer->source, header->msg_namelen);
1416 memcpy(buffer->source, &socket->address, socket->address.ss_len);
/haiku/src/system/kernel/arch/generic/
H A Dacpi_irq_routing_table.cpp79 dprintf(" source %p %" B_PRIu32 ";", entry.source, entry.source_index);
209 if (irqEntry.source == NULL) {
220 if (existing->handle == irqEntry.source) {
238 link->handle = irqEntry.source;
323 status_t status = set_current_irq(acpi, irqEntry.source, configuration);
329 read_current_irq(acpi, irqEntry.source, configuration);
332 if (other.source == irqEntry.source) {
378 // a source i
382 acpi_handle source; local
[all...]
/haiku/src/system/kernel/arch/x86/
H A Darch_int.cpp363 x86_set_irq_source(int32 irq, irq_source source) argument
365 sVectorSources[irq] = source;
/haiku/headers/private/kernel/arch/x86/
H A Darch_int.h82 void x86_set_irq_source(int32 irq, irq_source source);
/haiku/src/kits/interface/
H A DStatusBar.cpp734 BStatusBar::_SetTextData(BString& text, const char* source, argument
737 if (source == NULL)
738 source = "";
741 if (text == source)
745 text = source;
/haiku/src/add-ons/kernel/busses/usb/
H A Dxhci.cpp2682 phys_addr_t source = B_LENDIAN_TO_HOST_INT64(trb->address); local
2683 if (source >= endpoint->trb_addr
2684 && (source - endpoint->trb_addr) < (XHCI_ENDPOINT_RING_SIZE * sizeof(xhci_trb))) {
2685 // The "source" address points to a TRB on the ring.
2687 const int64 offset = (source - endpoint->trb_addr) / sizeof(xhci_trb);
2690 source = B_LENDIAN_TO_HOST_INT64(endpoint->trbs[offset].address);
2694 int64 offset = (source - td->trb_addr) / sizeof(xhci_trb);
2769 "the last in the TD!\n", source);
2773 TRACE_ERROR("TRB 0x%" B_PRIxPHYSADDR " was not found in the endpoint!\n", source);
/haiku/src/system/kernel/vm/
H A Dvm.cpp151 if (fBottomCache == NULL || fBottomCache->source == NULL)
156 fBottomCache = fBottomCache->source;
175 // Unlock caches in source -> consumer direction. This is important to
219 nextCache = cache->source;
225 nextCache = cache->source;
1172 // ktrace_printf("map_backing_store: cache: %p (source: %p), \"%s\" -> %p",
1181 // need to temporarily unlock the source cache or we'll otherwise
2355 // Check whether the source area exists and is cloneable. If so, mark it
2419 // to the source cache - but otherwise it has no idea that we need
2464 // map in all pages from source
2735 VMArea* source; local
6403 clone_area(const char* name, void** _address, uint32 addressSpec, uint32 protection, area_id source) argument
[all...]
/haiku/src/bin/network/traceroute/
H A Dtraceroute.c5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that: (1) source code distributions
133 * network or protocol unreachable, respectively), !S or !F (source
149 * file that came with the source to this program for a description
164 * source port (the high bit is set to move the port number out
185 * sending a loose-source-routed udp datagram through the destination
186 * back to yourself. Unfortunately, SO many gateways botch source
313 /* loose source route gateway list (including room for final destination) */
329 char *source; variable
675 * set the ip source addres
[all...]
/haiku/src/bin/network/ping/
H A Dping.c10 * Redistribution and use in source and binary forms, with or without
13 * 1. Redistributions of source code must retain the above copyright
223 char *ep, *source, *target, *payload; local
241 payload = source = NULL;
474 source = optarg;
579 if (source) {
582 if (inet_aton(source, &sock_in.sin_addr) != 0) {
583 shostname = source;
585 hp = cap_gethostbyname2(capdns, source, AF_INET);
588 source, hstrerro
[all...]
/haiku/src/apps/aboutsystem/
H A DAboutSystem.cpp1447 const char* source = sources.StringAt(i); local
1454 parse_named_url(source, urlName, urlAddress);
1601 "noted in the source. Haiku" B_UTF8_REGISTERED
/haiku/src/add-ons/media/media-add-ons/multi_audio/
H A DMultiAudioNode.cpp463 output->source.port = ControlPort();
464 output->source.id = fOutputs.CountItems();
466 sprintf(output->name, "input %" B_PRId32, output->source.id);
712 channel->fInput.source = producer;
729 if (channel == NULL || channel->fInput.source != producer)
732 channel->fInput.source = media_source::null;
754 if (channel->fInput.source != producer)
838 MultiAudioNode::FormatChangeRequested(const media_source& source, argument
924 media_source* source, char* name)
954 *source
922 PrepareToConnect(const media_source& what, const media_destination& where, media_format* format, media_source* source, char* name) argument
961 Connect(status_t error, const media_source& source, const media_destination& destination, const media_format& format, char* name) argument
1111 AdditionalBufferRequested(const media_source& source, media_buffer_id previousBuffer, bigtime_t previousTime, const media_seek_tag* previousTag) argument
2207 _FindOutput(media_source source) argument
[all...]
/haiku/src/add-ons/kernel/network/protocols/ipv6/
H A Dipv6.cpp79 in6_addr source; member in struct:ipv6_packet_key
136 && packetKey.source == key.source
525 dprintf(" source: %s\n", ip6_sprintf(&header.header.ip6_src, addrbuf));
552 memcpy(&key.source, &header.Src(), sizeof(in6_addr));
1283 sockaddr_in6& source = *(sockaddr_in6*)buffer->source; local
1318 memcpy(&header->ip6_src, &source.sin6_addr, sizeof(in6_addr));
1503 // set net_buffer's source/destination address
1504 fill_sockaddr_in6((struct sockaddr_in6*)buffer->source, heade
[all...]
/haiku/src/add-ons/kernel/network/protocols/ipv4/
H A Dipv4.cpp65 in_addr_t source; member in struct:ipv4_packet_key
107 return (key.source ^ key.destination ^ key.protocol ^ key.id);
120 && packetKey.source == key.source
479 struct pretty_ipv4* src = (struct pretty_ipv4*)&header.source;
494 dprintf(" source: %d.%d.%d.%d\n", src->a, src->b, src->c, src->d);
545 key.source = (in_addr_t)header.source;
1487 sockaddr_in& source = *(sockaddr_in*)buffer->source; local
[all...]

Completed in 224 milliseconds

1234567891011>>