HomeSort by: relevance | last modified time | path
    Searched defs:content (Results 1 - 25 of 84) sorted by relevancy

1 2 3 4

  /src/external/gpl3/gcc/dist/libgcc/config/arm/
unwind-arm-vxworks.c 41 UINT32 content; member in struct:__anon14223
  /src/external/gpl3/gcc.old/dist/libgcc/config/arm/
unwind-arm-vxworks.c 41 UINT32 content; member in struct:__anon16636
  /src/external/bsd/libarchive/dist/tar/test/
test_crlf_mtree.c 18 char *content = "#mtree\r\n" local
20 "root gname=root mode=0755 content=bar/foo\r\n"
21 "g type=file uname=root gname=root mode=0755 content=bar/goo\r\n";
34 assertMakeFile(absolute_path, 0777, content);
test_option_C_mtree.c 18 char *content = "./foo type=file uname=root gname=root mode=0755\n"; local
31 assertMakeFile(absolute_path, 0777, content);
  /src/external/gpl2/gettext/dist/gettext-tools/misc/
po-compat.el 73 (defconst po-content-type-charset-alist
152 Content-Type into a Mule coding system.")
158 "^\"Content-Type: text/plain;[ \t]*charset=\\(.*\\)\\\\n\"")
198 (cdr (assoc charset-upper po-content-type-charset-alist)))
228 po-content-type-charset-alist))
  /src/crypto/external/bsd/openssl.old/dist/test/
cmsapitest.c 20 CMS_ContentInfo* content = NULL; local
29 content = CMS_encrypt(certstack, msgbio, EVP_aes_128_cbc(), CMS_TEXT);
30 if (!TEST_ptr(content))
33 if (!TEST_true(CMS_decrypt(content, privkey, cert, NULL, outmsgbio,
47 CMS_ContentInfo_free(content);
  /src/external/bsd/libevent/dist/test/
bench_http.c 54 static char *content; variable
62 evbuffer_add(evb, content, content_len);
76 evbuffer_add_reference(evb, content, content_len, NULL, NULL);
133 fprintf(stderr, "Missing content length\n");
138 fprintf(stderr, "Bad content length\n");
165 content = malloc(content_len);
166 if (content == NULL) {
167 fprintf(stderr, "Cannot allocate content\n");
172 content[i] = (i & 255);
176 fprintf(stderr, "/ind - basic content (memory copy)\n")
    [all...]
  /src/external/bsd/ntp/dist/sntp/libevent/test/
bench_http.c 55 static char *content; variable
63 evbuffer_add(evb, content, content_len);
77 evbuffer_add_reference(evb, content, content_len, NULL, NULL);
134 fprintf(stderr, "Missing content length\n");
139 fprintf(stderr, "Bad content length\n");
166 content = malloc(content_len);
167 if (content == NULL) {
168 fprintf(stderr, "Cannot allocate content\n");
173 content[i] = (i & 255);
177 fprintf(stderr, "/ind - basic content (memory copy)\n")
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/tui/
tui-regs.h 54 std::string content; member in struct:tui_register_info
97 /* Display the registers in the content from 'start_element_no'
98 until the end of the register content or the end of the display
112 /* Display the registers in the content from 'start_element_no' on
113 'start_line_no' until the end of the register content or the end
  /src/external/mit/libcbor/dist/src/cbor/
bytestrings.c 63 void *content = _CBOR_MALLOC(length); local
64 _CBOR_DEPENDENT_NOTNULL(item, content);
65 memcpy(content, handle, length);
66 cbor_bytestring_set_handle(item, content, length);
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/
CVRecord.h 57 ArrayRef<uint8_t> content() const { function in class:llvm::codeview::CVRecord
  /src/external/gpl3/gdb/dist/gdb/tui/
tui-regs.h 56 std::string content; member in struct:tui_register_info
104 /* Display the registers in the content from 'start_element_no'
105 until the end of the register content or the end of the display
119 /* Display the registers in the content from 'start_element_no' on
120 'start_line_no' until the end of the register content or the end
  /src/crypto/external/bsd/netpgp/dist/src/lib/
crypto.c 272 const pgp_contents_t *content = &pkt->u; local
289 if (fwrite(content->unarmoured_text.data, 1,
290 content->unarmoured_text.length, stdout) != content->unarmoured_text.length) {
301 *content->get_seckey.seckey = cbinfo->sshseckey;
validate.c 238 const pgp_contents_t *content = &pkt->u; local
261 key->pubkey = content->pubkey;
268 key->subkey = content->pubkey;
272 key->seckey = content->seckey;
280 key->userid = content->userid;
285 if (content->userattr.len == 0) {
291 (int) content->userattr.len);
295 key->userattr = content->userattr;
303 content->sig.info.signer_id,
306 if (!add_sig_to_list(&content->sig.info
428 const pgp_contents_t *content = &pkt->u; local
    [all...]
  /src/external/bsd/pkg_install/dist/admin/
check.c 95 char *content; local
97 content = pkgdb_pkg_file(pkgdir, CONTENTS_FNAME);
98 f = fopen(content, "r");
100 err(EXIT_FAILURE, "can't open %s", content);
101 free(content);
  /src/sys/external/bsd/drm2/dist/drm/amd/display/dc/dcn20/
amdgpu_dcn20_stream_encoder.c 225 const uint32_t *content = (const uint32_t *) &info_packet->sb[0]; local
255 /* Write generic packet content 128 bytes long. Four sets are used (indexes 7
262 REG_WRITE(AFMT_GENERIC_0, *content++);
263 REG_WRITE(AFMT_GENERIC_1, *content++);
264 REG_WRITE(AFMT_GENERIC_2, *content++);
265 REG_WRITE(AFMT_GENERIC_3, *content++);
266 REG_WRITE(AFMT_GENERIC_4, *content++);
267 REG_WRITE(AFMT_GENERIC_5, *content++);
268 REG_WRITE(AFMT_GENERIC_6, *content++);
269 REG_WRITE(AFMT_GENERIC_7, *content++)
    [all...]
  /src/crypto/external/bsd/openssl/dist/test/
cmsapitest.c 30 CMS_ContentInfo* content = NULL; local
39 content = CMS_encrypt(certstack, msgbio, cipher, CMS_TEXT);
40 if (!TEST_ptr(content))
43 if (!TEST_true(CMS_decrypt(content, privkey, cert, NULL, outmsgbio,
57 CMS_ContentInfo_free(content);
  /src/external/bsd/nsd/dist/
mini_event.h 106 content; member in struct:event_base
161 /** set content of event */
  /src/external/ibm-public/postfix/dist/src/global/
delivered_hdr.c 44 /* Offset of the first message content record.
222 const char *content; member in struct:test_case
245 for (tp = test_cases; tp->content != 0; tp++)
246 REC_PUT_LIT(mem_fp, tp->rec_type, tp->content);
256 for (errors = 0, tp = test_cases; tp->content != 0; tp++) {
258 delivered_hdr_find(dp, tp->content + sizeof("Delivered-To:"));
260 tp->rec_type, tp->content,
  /src/libexec/httpd/
lua-bozo.c 31 /* this code implements dynamic content generation using Lua for bozohttpd */
311 char *s, *query, *uri, *file, *command, *info, *content; local
420 content = bozomalloc(httpd,
423 STDIN_FILENO, content,
426 content[n] = '\0';
428 content);
433 free(content);
  /src/sys/arch/macppc/dev/
mediabay.c 165 device_t content; local
247 content = config_found(sc->sc_dev, &ca, mediabay_print,
249 if (content) {
250 sc->sc_content = content;
  /src/crypto/external/apache2/openssl/dist/test/
cmsapitest.c 32 CMS_ContentInfo *content = NULL; local
42 content = CMS_encrypt(certstack, msgbio, cipher, CMS_TEXT);
43 if (!TEST_ptr(content))
46 if (!TEST_true(CMS_decrypt(content, privkey, cert, NULL, outmsgbio,
51 && !TEST_ptr(contentbio = CMS_EnvelopedData_decrypt(content->d.envelopedData,
67 CMS_ContentInfo_free(content);
107 BIO *bio, *content = NULL; local
310 && TEST_ptr(content = CMS_SignedData_verify(cms->d.signedData, NULL, NULL, NULL,
312 BIO_free(content);
  /src/crypto/external/bsd/heimdal/dist/lib/hx509/
ks_p12.c 106 heim_octet_string content; local
119 &content);
124 ret = keyBag_parser(context, c, content.data, content.length, attrs);
125 der_free_octet_string(&content);
243 heim_octet_string content; local
253 &content);
258 ret = parse_safe_content(context, c, content.data, content.length);
260 der_free_octet_string(&content);
271 heim_octet_string content; local
    [all...]
  /src/external/bsd/unbound/dist/util/
mini_event.h 121 content; member in struct:event_base
169 /** set content of event */
  /src/external/gpl3/gcc/dist/gcc/c-family/
c-indentation.cc 787 const char *content = (" line 1\n" local
790 temp_source_file tmp (SELFTEST_LOCATION, ".txt", content);

Completed in 41 milliseconds

1 2 3 4