Searched refs:source (Results 376 - 400 of 489) sorted by relevance

<<11121314151617181920

/haiku/src/apps/cortex/InfoView/
H A DConnectionInfoView.cpp5 * Redistribution and use in source and binary forms, with or without
9 * 1. Redistributions of source code must retain the above copyright
68 m_source(connection.source()),
83 s << "(" << MediaString::getStringFor(output.source) << ")";
/haiku/headers/build/
H A DBeOSBuildCompatibility.h37 extern size_t strlcpy(char* dest, const char* source, size_t length);
40 extern size_t strlcat(char* dest, const char* source, size_t length);
/haiku/src/preferences/filetypes/
H A DIconView.h27 Icon(const Icon& source);
58 Icon& operator=(const Icon& source);
/haiku/src/kits/translation/
H A DTranslationUtils.cpp318 \param source the stream with the styled text
328 BTranslationUtils::GetStyledText(BPositionIO* source, BTextView* intoView, argument
331 if (source == NULL || intoView == NULL)
348 if (roster->Translate(source, NULL, &config, &mallocIO,
441 BTranslationUtils::GetStyledText(BPositionIO* source, BTextView* intoView, argument
444 return GetStyledText(source, intoView, NULL, roster);
/haiku/src/kits/debugger/arch/x86/
H A DArchitectureX86.cpp607 DisassembledCode* source = new(std::nothrow) DisassembledCode( local
609 if (source == NULL)
611 BReference<DisassembledCode> sourceReference(source, true);
621 if (!source->AddCommentLine((functionName << ':').String()))
632 if (!source->AddInstructionLine(line, instructionAddress,
/haiku/src/kits/debugger/arch/x86_64/
H A DArchitectureX8664.cpp684 DisassembledCode* source = new(std::nothrow) DisassembledCode( local
686 if (source == NULL)
688 BReference<DisassembledCode> sourceReference(source, true);
698 if (!source->AddCommentLine((functionName << ':').String()))
709 if (!source->AddInstructionLine(line, instructionAddress,
/haiku/src/kits/storage/mime/
H A DDatabaseLocation.cpp810 DatabaseLocation::_CopyTypeNode(BNode& source, const char* type, BNode& _target) argument
821 source.RewindAttrs();
823 while (source.GetNextAttrName(attribute) == B_OK) {
825 result = source.GetAttrInfo(attribute, &info);
840 ssize_t bytesRead = source.ReadAttr(attribute, info.type, 0,
/haiku/src/apps/bootmanager/
H A DLegacyBootMenu.cpp661 const MasterBootRecord* source)
663 memcpy(destination->diskSignature, source->diskSignature,
664 sizeof(source->diskSignature) + sizeof(source->reserved)
665 + sizeof(source->partition));
660 _CopyPartitionTable(MasterBootRecord* destination, const MasterBootRecord* source) argument
/haiku/src/libs/icon/flat_icon/
H A DFlatIconImporter.cpp442 _ReadTransformer(LittleEndianBuffer& buffer, VertexSource& source, Shape* shape) argument
451 = new (nothrow) AffineTransformer(source);
468 = new (nothrow) ContourTransformer(source);
486 = new (nothrow) PerspectiveTransformer(source, shape);
503 = new (nothrow) StrokeTransformer(source);
647 // path source shape
/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/apps/activitymonitor/
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/apps/codycam/
H A DVideoConsumer.cpp185 fIn.source = media_source::null;
382 fIn.source = producer;
411 if (where == fIn.destination && producer == fIn.source) {
413 fIn.source = media_source::null;
517 if (producer != fIn.source)
/haiku/src/add-ons/media/media-add-ons/radeon/
H A DTheater100.cpp143 void CTheater100::SetStandard(theater_standard standard, theater_source source) argument
149 "TUNER\0COMP\0\0SVIDEO"+6*source));
152 fSource = source;
308 void CTheater100::SetADC(theater_standard standard, theater_source source) argument
310 PRINT(("CTheater100::SetADC(%c, %c)\n", "NJ4MNCB6S"[standard], "TCS"[source]));
338 switch (source) {
352 PRINT(("CTheater100::SetADC() - Bad source\n"));
557 void CTheater100::SetCombFilter(theater_standard standard, theater_source source) argument
932 PRINT(("CTheater100::SetCombFilter(%c, %c)\n", "NJ4MNCB6S"[standard], "TCS"[source]));
936 if( source
[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/build/libgnuregex/
H A Dregex.c181 #define REGEX_REALLOCATE(source, osize, nsize) realloc (source, nsize)
206 #define REGEX_REALLOCATE(source, osize, nsize) \
208 bcopy (source, destination, osize), \
401 #define EXTRACT_NUMBER(destination, source) \
403 (destination) = *(source) & 0377; \
404 (destination) += SIGN_EXTEND_CHAR (*((source) + 1)) << 8; \
409 extract_number (dest, source)
411 unsigned char *source;
413 int temp = SIGN_EXTEND_CHAR (*(source
[all...]
/haiku/src/apps/debuganalyzer/gui/chart/
H A DChart.cpp497 for (int32 i = 1; ChartDataSource* source = fDataSources.ItemAt(i);
499 fDomain.Extend(source->Domain());
500 fRange.Extend(source->Range());
/haiku/src/bin/network/route/
H A Droute.cpp362 BNetworkAddress source(*request.source);
363 printf("source %s\n", source.ToString().String());
/haiku/src/add-ons/kernel/network/stack/
H A Dutility.cpp44 UserBuffer::Push(void* source, size_t length) argument
55 fStatus = user_memcpy(fBuffer, source, length);
59 memcpy(fBuffer, source, length);
/haiku/src/add-ons/kernel/drivers/timer/
H A Darch_acpi.h93 uint8 type; /* 2 = Interrupt source override */
96 uint8 source; /* Bus-relative interrupt source (IRQ) */ member in struct:acpi_int_source_override
98 bus-relative source int will signal */
163 uint8 type; /* 8 = platform interrupt source */
/haiku/src/add-ons/kernel/network/protocols/ipv6/
H A Dmulticast.cpp134 buffer->source));
/haiku/src/add-ons/media/media-add-ons/equalizer/
H A DEqualizerNode.h91 media_format* format, media_source* source,
/haiku/src/apps/mediaplayer/supplier/
H A DMediaTrackAudioSupplier.cpp298 // copies /frames/ frames at position /position/ from the source to the
302 MediaTrackAudioSupplier::_CopyFrames(void* source, int64 sourceOffset, argument
309 source = (char*)source + frameSize * (position - sourceOffset);
311 memcpy(target, source, frames * frameSize);
317 // copies /frames/ frames at position /position/ from the source to the
318 // target buffer. This version expects a cache buffer as source.
/haiku/src/add-ons/media/media-add-ons/video_mixer/
H A DVideoMixerNodeEventLooper.cpp158 status = SendBuffer(bufferMixer.GetOutputBuffer(), fOutput.source, fOutput.destination);
/haiku/headers/libs/print/libprint/
H A DGraphicsDriver.h82 void _RotateInto(BBitmap* target, const BBitmap* source);
/haiku/headers/private/media/experimental/
H A DMediaClient.h150 const media_source& source) const;

Completed in 297 milliseconds

<<11121314151617181920