Searched refs:source (Results 451 - 475 of 489) sorted by relevance

<<11121314151617181920

/haiku/src/add-ons/kernel/network/protocols/l2cap/
H A Dl2cap.cpp214 const sockaddr_l2cap* l2capAddr = (sockaddr_l2cap*)buffer->source;
/haiku/src/kits/debugger/elf/
H A DCoreFile.cpp260 // create a data source for the text segment
261 ElfSymbolLookupSource* source = fElfFile.CreateSymbolLookupSource( local
264 if (source == NULL)
274 return ElfSymbolLookup::Create(source, symbolTable, symbolHash, stringTable,
/haiku/src/apps/screenshot/
H A DScreenshotWindow.cpp310 void* source = NULL; local
311 if (message->FindPointer("source", &source) == B_OK)
312 fLastSelectedPath = static_cast<BMenuItem*> (source);
/haiku/src/apps/webpositive/
H A DSettingsWindow.cpp199 BMenuItem* source; local
206 if (message->FindPointer("source", (void**)&source) == B_OK)
207 source->SetMarked(true);
H A DBrowserWindow.cpp10 * Redistribution and use in source and binary forms, with or without
13 * 1. Redistributions of source code must retain the above copyright
481 menu->AddItem(new BMenuItem(B_TRANSLATE("Page source"),
917 // Currently the only source of these messages is the bookmarks
2756 BString source; local
2757 ret = message->FindString("source", &source);
2773 ssize_t written = pageSourceFile.Write(source.String(),
2774 source.Length());
2775 if (written != source
[all...]
/haiku/src/bin/bfs_tools/
H A Drecover.cpp702 HashtableInodeSource source(disk);
713 node->CopyTo(copyTo, true, &source);
722 node->CopyTo(copyTo, true, &source);
812 fprintf(stderr,"The source and target device are identical, "
/haiku/src/system/libnetwork/netresolv/resolv/
H A Dres_init.c7 * Redistribution and use in source and binary forms, with or without
10 * 1. Redistributions of source code must retain the above copyright
536 res_setoptions(res_state statp, const char *options, const char *source) argument
546 options, source);
603 options, source);
/haiku/src/apps/processcontroller/
H A DProcessController.cpp468 BMenuItem* source; local
469 if (message->FindPointer("source", (void**)&source) != B_OK)
471 if (!source->IsMarked())
/haiku/src/kits/tracker/
H A DFSUtils.cpp1746 BDirectory source(&ref);
1747 if (source.InitCheck() == B_OK) {
1748 source.Rewind();
1750 while (source.GetNextEntry(&current) == B_OK) {
1842 BString source; local
1844 // source is deeper in the same tree than the target
1845 source.Append(src);
1847 // target is deeper in the same tree than the source
1850 source.Prepend("../");
1853 source
[all...]
H A DWidgetAttributeText.cpp138 const char* source[1]; local
141 source[0] = inString;
147 font.GetTruncatedStrings(source, 1, truncMode, width, results);
H A DIconCache.h175 // same as above, always uses normal icon as source
434 IconSource &source, IconDrawMode mode, BSize size,
/haiku/src/kits/network/libnetapi/
H A DNetworkSettings.cpp50 virtual status_t ConvertToDriverSettings(const BMessage& source,
280 InterfaceAddressFamilyConverter::ConvertToDriverSettings(const BMessage& source, argument
284 if (source.FindInt32("family", &family) == B_OK) {
/haiku/src/tests/system/network/tcp_shell/
H A Dtcp_shell.cpp439 memcpy(buffer->source, &socket->address, socket->address.ss_len);
1060 if (is_server((sockaddr *)buffer->source))
1165 ip_header.ip_src.s_addr = ((sockaddr_in*)buffer->source)->sin_addr.s_addr;
/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);
H A Dlink.cpp572 if (buffer->destination->sa_family != buffer->source->sa_family
/haiku/headers/os/media/
H A DMediaRoster.h121 const media_source& source,
H A DMediaDefs.h37 B_MEDIA_CONNECTION_BROKEN, /* "source", "destination" */
44 B_MEDIA_FORMAT_CHANGED, /* N "source", "destination", "format" */
691 int32 source; member in struct:media_header
/haiku/src/add-ons/kernel/network/devices/tunnel/
H A Dtunnel.cpp209 struct sockaddr_in& src = *(struct sockaddr_in*)buffer->source;
/haiku/src/kits/package/solver/libsolv/
H A DLibsolvSolver.cpp1140 // replace source with target
1141 Solvable* source = fPool->solvables + sourceId; local
1147 int illegalMask = policy_is_illegal(fSolver, source, target, 0);
/haiku/src/apps/codycam/
H A DCodyCam.cpp225 /* find the time source */
228 fWindow->ErrorAlert(B_TRANSLATE("Cannot get a time source"), status);
236 fWindow->ErrorAlert(B_TRANSLATE("Cannot find a video source.\n"
290 status = fMediaRoster->Connect(fProducerOut.source,
293 fWindow->ErrorAlert(B_TRANSLATE("Cannot connect the video source to "
303 fWindow->ErrorAlert(B_TRANSLATE("Cannot set the time source for the "
304 "video source"), status);
311 fWindow->ErrorAlert(B_TRANSLATE("Cannot set the time source for the "
336 /* because the system time source won't be running */
342 fWindow->ErrorAlert(B_TRANSLATE("Cannot start time source!"),
[all...]
/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/add-ons/kernel/drivers/audio/emuxki/
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),
/haiku/src/servers/media/
H A DDefaultManager.cpp371 // We do not search for the system time source,
396 // The normal time source is searched for after the
574 // The BeOS R5 None Out node pretend to be a physical time source,
732 rv = fRoster->Connect(output.source, input.destination, &format,
/haiku/src/kits/media/
H A DSoundPlayer.cpp789 // set the producer's time source to be the "default" time source,
858 fInitStatus = roster->Connect(_output.source, _input.destination,

Completed in 199 milliseconds

<<11121314151617181920