/kernel/linux/linux-6.6/tools/testing/selftests/kexec/ |
H A D | test_kexec_file_load.sh | 85 line=$(getfattr -n security.ima -e hex --absolute-names $KERNEL_IMAGE 2>&1) 86 echo $line | grep -q "security.ima=0x03" 119 line=$(kexec --load --kexec-file-syscall $KERNEL_IMAGE 2>&1) 160 echo $line | grep -q "Required key not available"
|
/kernel/linux/linux-6.6/tools/testing/selftests/kselftest/ |
H A D | runner.sh | 24 # If Perl is unavailable, we must fall back to line-at-a-time prefixing 84 while read line ; do 86 if echo "$line" | grep -q '^#'; then 89 field=$(echo "$line" | cut -d= -f1) 90 value=$(echo "$line" | cut -d= -f2-) 95 # Command line timeout overrides the settings file
|
/kernel/linux/linux-6.6/drivers/scsi/qedi/ |
H A D | qedi_dbg.h | 81 void qedi_dbg_err(struct qedi_dbg_ctx *qedi, const char *func, u32 line, 83 void qedi_dbg_warn(struct qedi_dbg_ctx *qedi, const char *func, u32 line, 85 void qedi_dbg_notice(struct qedi_dbg_ctx *qedi, const char *func, u32 line, 87 void qedi_dbg_info(struct qedi_dbg_ctx *qedi, const char *func, u32 line,
|
/third_party/elfutils/tests/ |
H A D | get-lines.c | 88 printf ("%s: cannot get individual line\n", argv[cnt]); in main() 97 int line; in main() local 98 if (dwarf_lineno (l, &line) != 0) in main() 99 line = 0; in main() 102 file ?: "???", line); in main() 110 printf ("%s: cannot get file from line (%zd): %s\n", in main() 120 printf ("%s: line %zd srcline (%s) != file srcline (%s)\n", in main()
|
H A D | nvidia_extended_linemap_libdw.c | 66 printf ("%s: cannot get individual line\n", argv[cnt]); in main() 75 int line; in main() local 76 if (dwarf_lineno (l, &line) != 0) in main() 77 line = 0; in main() 80 file ?: "???", line); in main() 88 printf ("%s: cannot get file from line (%zd): %s\n", in main() 98 printf ("%s: line %zd srcline (%s) != file srcline (%s)\n", in main()
|
H A D | next-lines.c | 66 printf ("%s: cannot get individual line\n", argv[cnt]); in main() 75 int line; in main() local 76 if (dwarf_lineno (l, &line) != 0) in main() 77 line = 0; in main() 80 file ?: "???", line); in main() 88 printf ("%s: cannot get file from line (%zd): %s\n", in main() 98 printf ("%s: line %zd srcline (%s) != file srcline (%s)\n", in main()
|
/third_party/alsa-lib/src/pcm/ |
H A D | pcm_dmix_x86_64.c | 85 char line[255]; in mix_select_callbacks() local 90 while (!feof(in) && (fgets(line, sizeof(line), in) != NULL)) { in mix_select_callbacks() 91 if (!strncmp(line, "processor", 9)) in mix_select_callbacks()
|
/third_party/astc-encoder/Test/ |
H A D | astc_profile_valgrind.py | 50 for line in lines: 51 line = line.strip() 52 match = pattern.match(line) 145 Parse the command line. 148 Namespace: The parsed command line container.
|
/third_party/backends/backend/ |
H A D | gt68xx_high.h | 110 /** Add a white calibration line to the calibrator. 112 * This function should be called after scanning each white calibration line. 113 * The line width must be equal to the value passed to gt68xx_calibrator_new(). 116 * @param line Pointer to the line data. 119 * - #SANE_STATUS_GOOD - the line data was processed successfully. 123 unsigned int *line); 140 /** Add a black calibration line to the calibrator. 142 * This function should be called after scanning each black calibration line. 143 * The line widt 262 SANE_Int line; /**< Current line */ global() member [all...] |
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/rbbi/ |
H A D | LSTMBreakEngineTest.java | 72 String line; in runTestFromFile() 74 while ((line = br.readLine()) != null) { in runTestFromFile() 75 String fields[] = line.split("\t"); in runTestFromFile() 110 assertEquals(line + " Test Case#" + caseNum , expected, actual); in runTestFromFile()
|
/third_party/libphonenumber/tools/java/cpp-build/test/com/google/i18n/phonenumbers/ |
H A D | CppMetadataGeneratorTest.java | 42 // 13 bytes per line, so have 16 bytes to test > 1 line (general case). in emitStaticArrayData() 101 for (String line = reader.readLine(); line != null; line = reader.readLine()) { in toLines() 102 lines.add(line); in toLines()
|
/third_party/libphonenumber/tools/java/common/test/com/google/i18n/phonenumbers/ |
H A D | MetadataFilterCoverageTest.java | 40 for (String line = source.readLine(); line != null; line = source.readLine()) { 41 codeBuilder.append(line).append("\n");
|
/third_party/ltp/lib/ |
H A D | tst_sys_conf.c | 56 char line[PATH_MAX]; in tst_sys_conf_save() local 94 ret = fgets(line, sizeof(line), fp); in tst_sys_conf_save() 105 tst_sys_conf_save_str(conf->path, line); in tst_sys_conf_save()
|
/third_party/node/test/parallel/ |
H A D | test-console-table.js | 249 const line = '─'.repeat(79); 254 ┌─────────┬──${line}──┐ 256 ├─────────┼──${line}──┤ 258 └─────────┴──${line}──┘
|
H A D | test-debugger-run-after-quit-restart.js | 29 'steps to the 2nd line' 55 { filename: script, line: 1 }, 62 { filename: script, line: 2 }, 70 { filename: script, line: 1 }, 85 { filename: script, line: 1 },
|
H A D | test-repl-preview.js | 36 this.emit('line', this.lines[this.lines.length - 1]); 41 for await (const [line] of events.on(this, 'line')) { 42 if (line.includes(PROMPT)) { 174 // eslint-disable-next-line no-control-regex 175 lines = lines.map((line) => line.replace(/Error: .+?\x1B/, ''));
|
/third_party/node/deps/v8/third_party/jinja2/ |
H A D | exceptions.py | 125 location = "line %d" % self.lineno 131 # if the source is set, add the line to the output 134 line = self.source.splitlines()[self.lineno - 1] 136 line = None 137 if line: 138 lines.append(" " + line.strip())
|
/third_party/node/tools/inspector_protocol/jinja2/ |
H A D | exceptions.py | 101 location = 'line %d' % self.lineno 107 # if the source is set, add the line to the output 110 line = self.source.splitlines()[self.lineno - 1] 112 line = None 113 if line: 114 lines.append(' ' + line.strip())
|
/third_party/node/deps/npm/lib/utils/ |
H A D | format-search-stream.js | 45 #line = 0 86 showHeaders: ++this.#line <= 1, 98 ).split('\n').map(line => line.slice(0, maxWidth)).join('\n')
|
/third_party/libdrm/radeon/ |
H A D | radeon_cs.c | 29 const char *file, const char *func, int line) in radeon_cs_begin() 32 return csi->csm->funcs->cs_begin(csi, ndw, file, func, line); in radeon_cs_begin() 37 const char *file, const char *func, int line) in radeon_cs_end() 40 return csi->csm->funcs->cs_end(csi, file, func, line); in radeon_cs_end() 28 radeon_cs_begin(struct radeon_cs *cs, uint32_t ndw, const char *file, const char *func, int line) radeon_cs_begin() argument 36 radeon_cs_end(struct radeon_cs *cs, const char *file, const char *func, int line) radeon_cs_end() argument
|
/third_party/musl/Benchmark/scripts/ |
H A D | compare_benchmark_result.py | 70 for line in lines: 71 if line.lower().startswith("bm_"): 72 m = bench_pattern.match(line) 78 print("match error: {}".format(line))
|
/third_party/python/Tools/scripts/ |
H A D | abitype.py | 182 line = source[pos:] variable 184 line = source[pos:nl+1] variable 185 tokens[-1][1] += line 186 pos += len(line)
|
H A D | parse_html5_entities.py | 86 for line in f1: 87 if line.startswith('html5 = {'): 93 if line.startswith('}'): 96 f2.write(line)
|
/third_party/python/Tools/ssl/ |
H A D | make_ssl_data.py | 32 for line in f: 33 match = pat.search(line) 51 # ignore backslash line continuation for now 129 for line in lines: 130 args.output.write(line + "\n")
|
/third_party/python/Lib/test/ |
H A D | mock_socket.py | 13 # line which the socket will feed on recv() or makefile(). 14 def reply_with(line): 16 _reply_data = line 27 # Re-insert the line, removing the \r\n we added. 49 def queue_recv(self, line): 50 self.lines.append(line)
|