Searched refs:line (Results 26 - 50 of 245) sorted by relevance

12345678910

/haiku/src/system/libnetwork/netresolv/net/
H A Dgetprotoent_r.c84 if (pd->line) {
85 free(pd->line);
86 pd->line = NULL;
104 if (pd->line)
105 free(pd->line);
106 pd->line = fparseln(pd->fp, NULL, NULL, NULL,
108 if (pd->line == NULL)
110 pr->p_name = p = pd->line;
H A Dprotoent.h40 char *line; member in struct:protoent_data
/haiku/src/add-ons/kernel/network/ppp/shared/libppp/
H A DMessageDriverSettingsUtils.cpp174 BString line, word(name);
177 line.SetTo('\t', level);
179 line << '\"';
180 line << word;
182 line << '\"';
187 line << ' ';
192 line << '\"';
193 line << word;
195 line << '\"';
203 line << " {";
[all...]
/haiku/src/add-ons/network_settings/dialup/
H A DMessageDriverSettingsUtils.cpp176 BString line, word(name);
179 line.SetTo('\t', level);
181 line << '\"';
182 line << word;
184 line << '\"';
189 line << ' ';
194 line << '\"';
195 line << word;
197 line << '\"';
205 line << " {";
[all...]
/haiku/headers/private/kernel/arch/
H A Ddebug_console.h29 void arch_debug_remove_interrupt_handler(uint32 line);
/haiku/src/add-ons/print/drivers/gutenprint/
H A DGPBand.h21 bool ContainsLine(int line) const;
/haiku/headers/private/shared/
H A DJsonEventListener.h14 /*! This constant line number can be used in raising an error where the
15 client raising the error does not know on which line the error arose.
28 virtual void HandleError(status_t status, int32 line,
/haiku/src/libs/stdc++/legacy/
H A DPlotFile.cc98 line(x0, y0, x0, y1);
99 line(x0, y1, x1, y1);
100 line(x1, y1, x1, y0);
101 return line(x1, y0, x0, y0);
132 PlotFile& PlotFile:: line(const int x0, const int y0, function in class:PlotFile
/haiku/src/bin/mail_utils/
H A Dmail.cpp83 "Type '.' alone on a line to end your text and send it.\n");
87 char line[32768] = ""; local
89 // Read each line and collect the body text until we get an end of text
90 // marker. That's a single dot "." on a line typed in by the user,
93 if (fgets(line, sizeof(line), stdin) == NULL) {
98 if (isTerminal && strcmp(line, ".\n") == 0)
101 body.Append(line);
/haiku/src/tests/kits/shared/
H A DJsonErrorHandlingTest.cpp26 void HandleError(status_t status, int32 line,
127 ErrorCapturingListener::HandleError(status_t status, int32 line, argument
131 fErrorLine = line;
187 int32 line, status_t expectedStatus, char expectedBadEscapeChar)
193 TestParseWithErrorMessage(input, line, expectedStatus,
200 int32 line, status_t expectedStatus)
205 TestParseWithErrorMessage(input, line, expectedStatus,
212 int32 line, status_t expectedStatus, char expectedChar)
219 TestParseWithErrorMessage(input, line, expectedStatus,
225 JsonErrorHandlingTest::TestParseWithErrorMessage(const char* input, int32 line, argument
186 TestParseWithBadStringEscape(const char* input, int32 line, status_t expectedStatus, char expectedBadEscapeChar) argument
199 TestParseWithUnterminatedElement(const char* input, int32 line, status_t expectedStatus) argument
211 TestParseWithUnexpectedCharacter(const char* input, int32 line, status_t expectedStatus, char expectedChar) argument
236 TestParseWithErrorMessage(BDataIO* inputData, int32 line, status_t expectedStatus, const char* expectedMessage) argument
[all...]
/haiku/src/add-ons/translators/pcx/
H A DPCX.cpp97 uint8 *line = scanLineData[row];
116 line[index++] = x;
118 line[index++] = x;
158 uint8 *line = scanLineData[row]; local
159 if (line == NULL)
163 bool isBit = ((line[i >> 3] & mask[i & 7]) != 0) ? true : false;
173 uint8 *line = scanLineData[row]; local
174 if (line == NULL)
179 index = (line[i >> 1] >> 4) & 15;
181 index = line[
194 uint8 *line = scanLineData[row]; local
210 uint8 *line = scanLineData[row]; local
[all...]
/haiku/src/bin/cddb_lookup/
H A Dcddb_server.cpp99 // Multiple results, remove the first line and parse the others.
187 // Remove first line and parse the others.
203 // Extract one line to reduce the scope of processing to it.
204 BString line; local
205 output.MoveInto(line, 0, output.FindFirst("\r\n"));
210 line.MoveInto(prefix, 0, line.FindFirst("="));
211 line.Remove(0, 1);
216 line.MoveInto(artist, 0, line
[all...]
/haiku/3rdparty/mmu_man/irc/Haiku/
H A Dgen_err_list.py14 for line in errors_h:
16 match = re.match(r'#\s?define\s+(?P<define>\w+)\s+(?P<expr>.+)', line)
92 for line in strerror_c:
94 match = re.match(r'\t*case (?P<define>\w+):', line)
98 match = re.match(r'\t*//\s+(?P<define>\w+):*$', line)
103 match = re.match(r'\t*return "(?P<str>.+)";', line)
/haiku/src/libs/compat/freebsd_network/
H A Dmutex.c83 _mtx_assert(struct mtx *m, int what, const char *file, int line) argument
91 m, file, line);
95 m, file, line);
98 m, file, line);
104 m, file, line);
107 panic("unknown mtx_assert at %s:%d", file, line);
/haiku/src/apps/installer/
H A DUnzipEngine.cpp237 UnzipEngine::ReadLine(const BString& line) argument
240 return _ReadLineListing(line);
242 return _ReadLineExtract(line);
247 UnzipEngine::_ReadLineListing(const BString& line) argument
251 const char* string = line.String();
299 UnzipEngine::_ReadLineExtract(const BString& line) argument
304 if (line.FindFirst(kCreatingFormat) == 0
305 || line.FindFirst(kInflatingFormat) == 0
306 || line.FindFirst(kLinkingFormat) == 0) {
312 int pos = line
[all...]
H A DUnzipEngine.h42 virtual status_t ReadLine(const BString& line);
44 status_t _ReadLineListing(const BString& line);
45 status_t _ReadLineExtract(const BString& line);
/haiku/src/kits/shared/
H A DTextTable.cpp247 BString line; local
250 line << " ";
253 line << column->Format(column->Title());
255 line << '\n';
256 fputs(line.String(), stdout);
258 line.SetTo('-', width);
259 line << '\n';
260 fputs(line.String(), stdout);
264 line.Truncate(0);
268 line << " ";
[all...]
/haiku/headers/posix/
H A Dshadow.h40 extern struct spwd* sgetspent(const char* line);
41 extern int sgetspent_r(const char* line, struct spwd *spwd, char *buffer,
/haiku/headers/private/debugger/types/
H A DSourceLocation.h13 SourceLocation(int32 line = 0, int32 column = 0)
15 fLine(line),
/haiku/src/kits/debugger/source_language/c_family/
H A DCLanguageFamilySyntaxHighlightInfo.h30 virtual int32 GetLineHighlightRanges(int32 line,
42 status_t _ParseLine(int32 line,
/haiku/src/add-ons/kernel/file_cache/
H A Drule_based_prefetcher.cpp307 eat_spaces(char *&line) argument
310 while (isspace(line[0]))
311 line++;
335 ignore_line(char *&line) argument
337 while (line[0] && line[0] != '\n')
338 line++;
343 get_name(char *&line) argument
345 if (line[0] != '"')
348 const char *name = ++line;
397 char *line = buffer; local
[all...]
/haiku/src/system/libnetwork/netresolv/isc/
H A Dassertions.c90 default_assertion_failed(const char *file, int line, assertion_type type, argument
94 file, line, assertion_type_to_text(type), cond,
/haiku/src/apps/cortex/RouteApp/
H A DRouteAppNodeManager.cpp206 logMsg.AddString("line", "Synced to system clock");
276 BString line = B_TRANSLATE("Between:"); local
277 logMsg.AddString("line", line);
278 line = " ";
279 line += B_TRANSLATE("%producer% and %consumer%");
280 line.ReplaceFirst("%producer%", producer->name());
281 line.ReplaceFirst("%consumer%", consumer->name());
282 logMsg.AddString("line", line);
384 BString line = B_TRANSLATE("Between:"); local
431 BString line = B_TRANSLATE("Between:"); local
[all...]
/haiku/src/bin/network/ftpd/
H A Dlogwtmp.c70 ftpd_logwtmp(line, name, addr)
71 char *line, *name;
87 (void)strncpy(ut.ut_line, line, sizeof(ut.ut_line));
/haiku/src/system/libroot/stubbed/
H A Dgenerate_stubs.py12 for line in sys.stdin.readlines():
13 if line[0] != '0':
17 (address, type, symbol) = line.split()

Completed in 94 milliseconds

12345678910