Searched refs:line (Results 76 - 100 of 245) sorted by relevance

12345678910

/haiku/src/system/libnetwork/netresolv/net/
H A Dgetservent_r.c69 free(sd->line);
70 sd->line = NULL;
129 free(sd->line);
130 sd->line = NULL;
136 sd->line = fparseln(sd->plainfile, NULL, NULL, NULL,
138 return sd->line == NULL ? -1 : 0;
148 if (sd->line == NULL)
151 sp->s_name = p = sd->line;
217 free(sd->line);
218 sd->line
[all...]
H A Dgetnetent.c72 static char line[BUFSIZ+1]; variable
133 p = fgets(line, (int)sizeof line, netf);
H A Dservent.h48 char *line; member in struct:servent_data
/haiku/src/add-ons/translators/ico/
H A DICO.cpp134 set_1_bit_per_pixel(uint8 *line, int32 x, int32 value) argument
138 line[x / 8] |= mask;
140 line[x / 8] &= ~mask;
145 set_4_bits_per_pixel(uint8 *line, int32 x, int32 value) argument
150 line[x / 2] &= mask;
151 line[x / 2] |= value << shift;
156 get_1_bit_per_pixel(uint8 *line, int32 x) argument
158 return (line[x / 8] >> (7 - (x & 7))) & 1;
163 get_4_bits_per_pixel(uint8 *line, int32 x) argument
165 return (line[
319 uint8 *line = get_data_row(xorData, xorDataSize, xorRowBytes, row); local
[all...]
/haiku/src/bin/
H A Durlwrapper.cpp12 * urlwrapper: wraps URL mime types around command line apps
104 BString line; local
108 //contents.MoveInto(line, 0, cr);
109 contents.CopyInto(line, 0, cr);
111 line.RemoveAll("\r");
112 if (!line.Length())
114 if (!line.ICompare("URL=", 4)) {
115 line.MoveInto(url, 4, line.Length());
154 BString line; local
[all...]
/haiku/src/kits/shared/
H A DCommandPipe.cpp267 // Reads output of file, line by line. Each line is passed to lineReader
273 BString line;
283 line << (char)c;
286 status_t ret = lineReader->ReadLine(line);
289 line = "";
313 virtual status_t ReadLine(const BString& line) argument
315 int lineLength = line.Length();
317 fResult << line; local
[all...]
/haiku/headers/private/libroot/
H A Duser_group.h113 status_t parse_passwd_line(char* line, char*& name, char*& password, uid_t& uid,
125 status_t parse_group_line(char* line, char*& name, char*& password, gid_t& gid,
137 status_t parse_shadow_pwd_line(char* line, char*& name, char*& password,
/haiku/src/tests/kits/interface/
H A DTextViewTestManual.cpp47 "a single line of text - (c) Conglom-O", NULL);
85 BString line = ": just some text here - nothing special to see\n"; local
86 BString format = BString("%*d") << line;
88 int32 lineLength = line.Length() + kLineNoSize;
/haiku/src/tools/checkstyle/
H A Dutils.py19 print(name + " (line " + str(startLine + 1) + ", " + str(startColumn) \
73 for line in temp.split('\n'):
79 for line in temp.split('\n'):
80 file.write('<span class="linehead"> </span>' + line.replace('\r', ' ') \
/haiku/src/bin/mkfs/
H A DFsCreator.cpp202 char line[255]; local
204 std::cin.getline(line, sizeof(line), '\n');
206 return line;
/haiku/src/libs/util/
H A Dfparseln.c74 * Read a line from a file parsing continuations ending in \
199 size_t size, line; local
201 line = 0;
202 while ((ptr = fparseln(stdin, &size, &line, NULL,
204 printf("line %d (%d) |%s|\n", line, size, ptr);
211 line 1
212 line 2 \
213 line 3 # Comment
214 line
[all...]
/haiku/src/system/kernel/arch/m68k/
H A Darch_debug_console.cpp23 arch_debug_remove_interrupt_handler(uint32 line) argument
/haiku/src/servers/launch/
H A DBaseJob.h52 const BString& line);
/haiku/3rdparty/mmu_man/scripts/
H A DHardwareChecker.sh98 listdev | while read line; do
100 case "$line" in
104 desc="${line/device /}"
108 devicestr=${line#*:}
109 device="${line%:*}"
152 vendorstr=${line#*:}
153 vendor="${line%:*}"
/haiku/src/kits/debugger/arch/x86/disasm/
H A DDisassemblerX86.h25 virtual status_t GetNextInstruction(BString& line,
/haiku/src/kits/debugger/arch/x86_64/disasm/
H A DDisassemblerX8664.h26 virtual status_t GetNextInstruction(BString& line,
/haiku/src/kits/debugger/settings/
H A DBreakpointSetting.cpp87 int32 line; local
88 if (archive.FindInt32("line", &line) != B_OK)
89 line = -1;
95 fSourceLocation = SourceLocation(line, column);
125 || (error = archive.AddInt32("line", fSourceLocation.Line())) != B_OK
/haiku/headers/private/shared/
H A DJsonWriter.h22 void HandleError(status_t status, int32 line,
/haiku/src/add-ons/mail_daemon/outbound_protocols/smtp/
H A DSMTP.h41 int32 ReceiveResponse(BString &line);
/haiku/src/kits/network/libnetapi/
H A DSSL.cpp47 static void _LockingFunction(int mode, int n, const char * file, int line) argument
/haiku/src/apps/haikudepot/server/
H A DStandardMetaDataJsonEventListener.cpp24 void HandleError(status_t status, int32 line,
93 SmdStackedEventListener::HandleError(status_t status, int32 line, argument
96 fMainListener->HandleError(status, line, message);
384 StandardMetaDataJsonEventListener::HandleError(status_t status, int32 line, argument
/haiku/src/tests/kits/shared/
H A DChecksumJsonEventListener.cpp54 ChecksumJsonEventListener::HandleError(status_t status, int32 line, const char* message) argument
/haiku/src/add-ons/print/drivers/gutenprint/
H A DGPJob.h42 GPBand* FindBand(int line);
44 int line);
/haiku/src/system/boot/loader/
H A Dpackage_support.cpp347 // read the file until we find the system package line
358 char* line = path.Get(); local
359 while (char* lineEnd = strchr(line, '\n')) {
361 if (is_system_package(line)) {
362 status_t result = strlcpy(packageName, line, packageNameSize)
368 line = lineEnd + 1;
372 if (line < path.Get() + remainingBytes) {
373 size_t left = path.Get() + remainingBytes - line;
374 memmove(path.Get(), line, left);
/haiku/src/libs/compat/freebsd_network/
H A Dmalloc.cpp48 _kernel_contigmalloc(const char *file, int line, size_t size, int flags, argument
62 snprintf(name, sizeof(name), "contig:%s:%d", baseName, line);

Completed in 82 milliseconds

12345678910