Searched defs:input (Results 1 - 8 of 8) sorted by relevance
/systemd/src/core/ |
H A D | ima-setup.c | 37 _cleanup_fclose_ FILE *input = NULL; local 47 input = fopen(IMA_POLICY_PATH, "re"); 48 if (!input) { 65 FOREACH_LINE(line, input,
|
/systemd/src/test/ |
H A D | test-calendarspec.c | 27 static void test_one(const char *input, const char *output) { argument 34 assert_se(calendar_spec_from_string(input, &c) >= 0); 37 printf("\"%s\" → \"%s\"\n", input, p); 53 static void test_next(const char *input, const char *new_tz, usec_t after, usec_t expect) { argument 70 assert_se(calendar_spec_from_string(input, &c) >= 0); 72 printf("\"%s\"\n", input);
|
H A D | test-util.c | 270 char input[] = " hello, waldo. "; local 272 r = strstrip(input); 278 char input[] = " hello, waldo. abc"; local 280 r = delete_chars(input, WHITESPACE);
|
/systemd/src/journal/ |
H A D | test-catalog.c | 79 const char *input = local 84 h = test_import(input, -1, -EINVAL); 92 const char *input = local 102 h = test_import(input, -1, 0); 115 const char *input = local 136 h = test_import(input, -1, 0); 149 const char *input = local 169 h = test_import(input, -1, 0);
|
/systemd/src/journal-remote/ |
H A D | journal-upload.h | 37 int input; member in struct:Uploader
|
/systemd/src/import/ |
H A D | export-raw.c | 194 uint8_t input[COPY_BUFFER_SIZE]; local 201 l = read(e->input_fd, input, sizeof(input)); 212 r = import_compress(&e->compress, input, l, &e->buffer, &e->buffer_size, &e->buffer_allocated);
|
H A D | export-tar.c | 189 uint8_t input[COPY_BUFFER_SIZE]; local 196 l = read(e->tar_fd, input, sizeof(input)); 207 r = import_compress(&e->compress, input, l, &e->buffer, &e->buffer_size, &e->buffer_allocated);
|
/systemd/src/shared/ |
H A D | dns-domain.c | 300 _cleanup_free_ uint32_t *input = NULL; local 325 input = stringprep_utf8_to_ucs4(encoded, encoded_size, &input_size); 326 if (!input) 329 if (idna_to_ascii_4i(input, input_size, buffer, 0) != 0) 355 _cleanup_free_ uint32_t *input = NULL; local 374 input = stringprep_utf8_to_ucs4(encoded, encoded_size, &input_size); 375 if (!input) 381 idna_to_unicode_44i(input, input_size, output, &output_size, 0);
|
Completed in 2524 milliseconds