/external/linux-tools-perf/src/tools/perf/ui/browsers/ |
scripts.c | 17 /* 160 bytes for one output line */ 22 char line[AVERAGE_LINE_LEN]; member in struct:script_line 84 slsmg_write_nstring(sline->line, browser->width); 110 char *line = NULL; local 129 /* Save each line of the output in one struct script_line object. */ 155 while ((retlen = getline(&line, &len, fp)) != -1) { 156 strncpy(sline->line, line, AVERAGE_LINE_LEN); 158 /* If one output line is very large, just cut it short */ 160 sline->line[AVERAGE_LINE_LEN - 1] = '\0' [all...] |
/external/linux-tools-perf/src/tools/perf/ui/gtk/ |
annotate.c | 19 "Line" 67 char *line = g_markup_escape_text(dl->line, -1); local 72 if (!line) 80 ret += scnprintf(buf + ret, size - ret, "%s", line); 84 g_free(line);
|
/external/linux-tools-perf/src/tools/perf/util/ |
trace-event-parse.c | 185 char *line; local 191 line = strtok_r(file, "\n", &next); 192 while (line) { 194 addr_str = strtok_r(line, " ", &fmt); 206 line = strtok_r(NULL, "\n", &next); 215 char *line; local 220 line = strtok_r(file, "\n", &next); 221 while (line) { 222 addr_str = strtok_r(line, ":", &fmt); 230 line = strtok_r(NULL, "\n", &next) [all...] |
/external/lldb/include/lldb/Symbol/ |
LineTable.h | 44 /// @brief A line table class. 53 /// The compile unit to which this line table belongs. 63 /// Adds a new line entry to this line table. 65 /// All line entries are maintained in file address order. 68 /// A const reference to a new line_entry to add to this line 79 uint32_t line, 93 // inserted in this line table. 97 uint32_t line, 106 // Insert a sequence of entries into this line table 365 uint32_t line; \/\/\/< The source line number, or zero if there is no line number information. member in struct:lldb_private::LineTable::Entry [all...] |
/external/lldb/source/API/ |
SBLineEntry.cpp | 142 uint32_t line = 0; local 144 line = m_opaque_ap->line; 147 log->Printf ("SBLineEntry(%p)::GetLine () => %u", m_opaque_ap.get(), line); 149 return line; 170 SBLineEntry::SetLine (uint32_t line) 172 ref().line = line; 178 ref().line = column;
|
/external/llvm/utils/unittest/googletest/include/gtest/internal/ |
gtest-death-test-internal.h | 80 const char* file, int line, DeathTest** test); 144 const char* file, int line, DeathTest** test) = 0; 151 int line, DeathTest **test) override; 236 int line() const { return line_; } function in class:testing::internal::InternalRunDeathTestFlag
|
/external/mesa3d/src/gallium/auxiliary/indices/ |
u_indices_gen.py | 115 def line( intype, outtype, ptr, v0, v1 ): function 129 line( intype, outtype, ptr, v0, v1 ) 131 line( intype, outtype, ptr, v1, v0 )
|
/external/mesa3d/src/gallium/auxiliary/util/ |
u_debug_memory.c | 58 unsigned line; member in struct:debug_memory_header 110 debug_malloc(const char *file, unsigned line, const char *function, 119 file, line, function, 126 hdr->line = line; 146 debug_free(const char *file, unsigned line, const char *function, 158 file, line, function, 167 hdr->file, hdr->line, hdr->function, 182 debug_calloc(const char *file, unsigned line, const char *function, 185 void *ptr = debug_malloc( file, line, function, count * size ) [all...] |
/external/mesa3d/src/gtest/include/gtest/internal/ |
gtest-death-test-internal.h | 80 const char* file, int line, DeathTest** test); 144 const char* file, int line, DeathTest** test) = 0; 151 const char* file, int line, DeathTest** test); 238 int line() const { return line_; } function in class:testing::internal::InternalRunDeathTestFlag
|
/external/mockito/src/org/mockito/internal/configuration/ |
ClassPathLoader.java | 49 * <code>mockito-extensions</code>, the content of this file need to have <strong>one</strong> line with 156 for (String line : readerToLines(new InputStreamReader(in, "UTF-8"))) { 157 String name = stripCommentAndWhitespace(line); 175 String line; local 176 while ((line = lineReader.readLine()) != null) { 177 result.add(line); 182 static String stripCommentAndWhitespace(String line) { 183 int hash = line.indexOf('#'); 185 line = line.substring(0, hash) [all...] |
/external/nist-sip/java/gov/nist/core/ |
StringTokenizer.java | 166 String line = getLine(); local 167 result.addElement(line); 187 /** get the SDP field name of the line 190 public static String getSDPFieldName(String line) { 191 if (line == null) 195 int begin = line.indexOf("="); 196 fieldName = line.substring(0, begin);
|
/external/opencv/cxcore/src/ |
cxerror.cpp | 53 int line; member in struct:__anon17266 151 const char *file, int line, void* ) 160 file != NULL ? file : "", line ); 174 const char *file, int line, void* ) 177 return cvStdErrReport( code, func_name, err_msg, file, line, 0 ); 190 func_name, file, line ); 208 const char* /*err_msg*/, const char* /*file*/, int /*line*/, void* ) 238 const char** filename, int* line ) 251 if( line ) 252 *line = 0 [all...] |
/external/opencv/otherlibs/highgui/ |
grfmt_imageio.cpp | 201 uchar * line = base + y * step; local 206 line[0] = bitdata[bitmapIndex + 2]; 208 line[1] = bitdata[bitmapIndex + 1]; 210 line[2] = bitdata[bitmapIndex + 0]; 212 line += 3; 326 const uchar * line = base + y * step; local 331 bitmapData[bitmapIndex + 2] = line[0]; 333 bitmapData[bitmapIndex + 1] = line[1]; 335 bitmapData[bitmapIndex + 0] = line[2]; 337 line += 3 [all...] |
/external/openfst/src/include/fst/script/ |
compile-impl.h | 63 char line[kLineLen]; local 64 while (istrm.getline(line, kLineLen)) { 68 SplitToVector(line, separator.c_str(), &col, true); 69 if (col.size() == 0 || col[0][0] == '\0') // empty line 76 << ", line = " << nline_; 135 // Maximum line length in text file. 148 << ", source = " << source_ << ", line = " << nline_; 156 << "\", source = " << source_ << ", line = " << nline_; 193 << "\", source = " << source_ << ", line = " << nline_;
|
/external/openfst/src/lib/ |
symbol-table.cc | 33 // Maximum line length in textual symbols file. 48 char line[kLineLen]; local 49 while (strm.getline(line, kLineLen)) { 53 SplitToVector(line, separator.c_str(), &col, true); 54 if (col.size() == 0) // empty line 59 << "file = " << filename << ", line = " << nline 60 << ":<" << line << ">"; local 72 << "file = " << filename << ", line = " << nline; 103 ostringstream line; local 104 line << symbols_[key] << '\t' << key 112 ostringstream line; local 257 ostringstream line; local [all...] |
/external/openssh/ |
auth-rsa.c | 64 * The .ssh/authorized_keys file contains public keys, one per line, in the 69 * length of a line is SSH_MAX_PUBKEY_BYTES characters. See sshd(8) for a 174 char *fp, line[SSH_MAX_PUBKEY_BYTES]; local 190 while (read_keyfile_line(f, file, line, sizeof(line), &linenum) != -1) { 196 for (cp = line; *cp == ' ' || *cp == '\t'; cp++) 219 /* Parse the key from the line. */ 221 debug("%.100s, line %lu: non ssh1 key syntax", 237 logit("Warning: %s, line %lu: keysize mismatch: " 244 debug("matching key found: file %s, line %lu %s %s" [all...] |
authfile.c | 290 char line[SSH_MAX_PUBKEY_BYTES]; local 299 while (read_keyfile_line(f, filename, line, sizeof(line), 301 cp = line; 495 char line[SSH_MAX_PUBKEY_BYTES]; local 506 while (read_keyfile_line(f, filename, line, sizeof(line), 508 cp = line; 550 * "revoked_keys_file" may be a KRL or a one-per-line list of public keys.
|
dh.c | 46 parse_prime(int linenum, char *line, struct dhgroup *dhg) 54 cp = line; 149 char line[4096]; local 163 while (fgets(line, sizeof(line), f)) { 165 if (!parse_prime(linenum, line, &dhg)) 191 while (fgets(line, sizeof(line), f)) { 192 if (!parse_prime(linenum, line, &dhg)) 205 logit("WARNING: line %d disappeared in %s, giving up" [all...] |
/external/pdfium/third_party/freetype/src/smooth/ |
ftsmooth.c | 315 FT_Byte* line = bitmap->buffer; local 319 for ( hh = height_org; hh > 0; hh--, line += pitch ) 322 FT_Byte* end = line + width; 327 FT_UInt pixel = line[xx-1];
|
/external/ppp/pppd/plugins/radius/ |
config.c | 53 static int set_option_str(char *filename, int line, OPTION *option, char *p) 63 static int set_option_int(char *filename, int line, OPTION *option, char *p) 68 error("%s: line %d: bogus option value", filename, line); 83 static int set_option_srv(char *filename, int line, OPTION *option, char *p) 91 error("%s: line %d: bogus option value", filename, line); 120 error("%s: line %d: no default port for %s", filename, line, option->name); 133 static int set_option_auo(char *filename, int line, OPTION *option, char *p 191 int line, pos; local [all...] |
/external/protobuf/gtest/include/gtest/internal/ |
gtest-death-test-internal.h | 78 const char* file, int line, DeathTest** test); 138 const char* file, int line, DeathTest** test) = 0; 145 const char* file, int line, DeathTest** test); 205 int line() const { return line_; } function in class:testing::internal::InternalRunDeathTestFlag
|
/external/protobuf/src/google/protobuf/stubs/ |
common_unittest.cc | 81 void CaptureLog(LogLevel level, const char* filename, int line, 85 implicit_cast<int>(level), filename, line, message)); 90 int line = __LINE__; local 97 "[libprotobuf INFO "__FILE__":" + SimpleItoa(line + 1) + "] A message.\n" 98 "[libprotobuf WARNING "__FILE__":" + SimpleItoa(line + 2) + "] A warning.\n" 99 "[libprotobuf ERROR "__FILE__":" + SimpleItoa(line + 3) + "] An error.\n",
|
/external/regex-re2/util/ |
logging.h | 51 LogMessage(const char* file, int line) : flushed_(false) { 52 stream() << file << ":" << line << ": "; local 76 LogMessageFatal(const char* file, int line) 77 : LogMessage(file, line) { }
|
/external/selinux/libselinux/utils/ |
avcstat.c | 154 char *line; local 166 line = strtok(buf, "\n"); 167 if (!line) 168 die("unable to parse \'%s\': end of line not found", 171 if (strcmp(line, HEADERS)) 181 while ((line = strtok(NULL, "\n"))) { 184 ret = sscanf(line, "%llu %llu %llu %llu %llu %llu",
|
/external/selinux/libsemanage/src/ |
utilities.c | 291 char *line = NULL; local 295 while (getline(&line, &buff_len, file) >= 0) { 296 if (pred(line)) { 297 semanage_rtrim(line, '\n'); 298 current = list_addafter_controlmem(current, line); 301 line = NULL; 305 free(line);
|