Searched refs:str (Results 201 - 225 of 376) sorted by relevance

1234567891011>>

/barrelfish-2018-10-04/usr/tests/distops/
H A Dmain.c92 .str = rx_str,
155 .str = rx_str,
/barrelfish-2018-10-04/tools/harness/tests/
H A Dxeonphi.py115 return "Xeon Phi operational: xeon_phi." + str(self.nphi - 1) + ".ready"
126 m = re.search("Xeon Phi operational: xeon_phi." + str(self.nphi - 1) + ".ready", line)
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/asn1/
H A Dameth_lib.c201 const char *str, int len)
206 len = strlen(str);
211 ameth = ENGINE_pkey_asn1_find_str(&e, str, len);
232 !strncasecmp(ameth->pem_str, str, len))
200 EVP_PKEY_asn1_find_str(ENGINE **pe, const char *str, int len) argument
H A Dasn1.h797 int ASN1_STRING_copy(ASN1_STRING *dst, const ASN1_STRING *str);
803 int ASN1_STRING_set(ASN1_STRING *str, const void *data, int len);
804 void ASN1_STRING_set0(ASN1_STRING *str, void *data, int len);
847 int ASN1_UTCTIME_set_string(ASN1_UTCTIME *s, const char *str);
857 int ASN1_GENERALIZEDTIME_set_string(ASN1_GENERALIZEDTIME *s, const char *str);
862 int ASN1_OCTET_STRING_set(ASN1_OCTET_STRING *str, const unsigned char *data, int len);
870 int UTF8_getc(const unsigned char *str, int len, unsigned long *val);
871 int UTF8_putc(unsigned char *str, int len, unsigned long value);
892 int ASN1_TIME_set_string(ASN1_TIME *s, const char *str);
998 int ASN1_STRING_print_ex_fp(FILE *fp, ASN1_STRING *str, unsigne
[all...]
/barrelfish-2018-10-04/lib/lwip2/src/apps/snmp/
H A Dsnmp_mib2_system.c92 * @param str if non-NULL then copy str pointer
96 snmp_mib2_set_sysdescr(const u8_t *str, const u16_t *len) argument
98 if (str != NULL) {
99 sysdescr = str;
108 * @param ocstr if non-NULL then copy str pointer
150 * @param ocstr if non-NULL then copy str pointer
191 * @param ocstr if non-NULL then copy str pointer
/barrelfish-2018-10-04/lib/openssl-1.0.0d/apps/
H A Dapps.h273 ASN1_GENERALIZEDTIME **pinvtm, const char *str);
310 int parse_yesno(const char *str, int def);
312 X509_NAME *parse_name(char *str, long chtype, int multirdn);
/barrelfish-2018-10-04/kernel/arch/arm/
H A Dexn.c180 char str[128]; local
181 snprintf(str, 128, "\t(pc)\t%08"PRIx32,
185 extrainfo = str;
/barrelfish-2018-10-04/kernel/
H A Dgdb_stub.c113 static const char * NONNULL NTS parse_hex_val(const char * NONNULL NTS str, argument
119 int value = fromhex(str[pos]);
125 return &str[pos];
/barrelfish-2018-10-04/lib/spawndomain/
H A Dmultiboot.c167 const char *str = multiboot_module_rawstring(region); local
168 if (str == NULL) {
174 strncpy(buf, str, sizeof(buf));
/barrelfish-2018-10-04/include/arch/x86_64/barrelfish/
H A Dsyscall_arch.h125 char str[256]; local
126 snprintf(str, 256, "Syscall while forbidden! from %p, %p, %p\n",
130 BF_SYSCALL_BODY(SYSCALL_PRINT, (uint64_t)str, 256, arg3, arg4, arg5, arg6, arg7, arg8, arg9, arg10, arg11, arg12, "");
/barrelfish-2018-10-04/usr/eclipseclp/lib_tcl/widget/
H A Dutil-tk.tcl181 # str optional seed string for HIGHLIGHT(string)
185 proc highlight_dialog {w {str {}}} {
230 if {[string compare {} $str]} {
231 set ${var}($w,string) $str
H A Dventry.tcl185 ;proc validate {w str new index type} {
195 set cmd [substitute $w $data(-vcmd) $str $new $index $type]
224 $str $new $index $type]
/barrelfish-2018-10-04/usr/skb/testapps/
H A Dapps.h273 ASN1_GENERALIZEDTIME **pinvtm, const char *str);
310 int parse_yesno(const char *str, int def);
312 X509_NAME *parse_name(char *str, long chtype, int multirdn);
/barrelfish-2018-10-04/usr/eclipseclp/Kernel/src/
H A Ddict.c187 register char *str = (id); \
188 for (length = hash = 0; *str; str++, length++) \
189 hash += (hash<<3) + *(unsigned char *)str; \
195 register char *str = (id); \
197 for (hash = 0; length > 0; str++, --length) \
198 hash += (hash<<3) + *(unsigned char *)str; \
712 pword *str = DidString(aux);
716 if (DecRefCtr(str->tag.kernel) == 0)
718 dict->string_used -= str
793 pword *str = DidString(dip); local
[all...]
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/bio/
H A Dbf_buff.c66 static int buffer_puts(BIO *h, const char *str);
67 static int buffer_gets(BIO *h, char *str, int size);
507 static int buffer_puts(BIO *b, const char *str) argument
509 return(buffer_write(b,str,strlen(str)));
/barrelfish-2018-10-04/kernel/arch/armv8/
H A Dexceptions.S240 str x30, [x0, #(30 * 8)]
330 str x19, [x13, #(33 * 8)]
342 str x11, [x13, #(11 * 8)]
381 str x18, [x13, #(18 * 8)]
437 str x19, [x13, #(31 * 8)]
/barrelfish-2018-10-04/usr/drivers/usb/usb_manager/controller/ehci/
H A Dusb_ehci_root_hub.c165 const char *str; local
234 str = "\001";
237 str = hc->rh_vendor;
240 str = "EHCI root hub";
243 str = "";
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/perlasm/
H A Dx86_64-xlate.pl605 /\.byte/ && do { my @str=split(/,\s*/,$line);
606 map(s/(0b[0-1]+)/oct($1)/eig,@str);
607 map(s/0x([0-9a-f]+)/0$1h/ig,@str) if ($masm);
608 while ($#str>15) {
610 .join(",",@str[0..15])."\n";
611 foreach (0..15) { shift @str; }
614 .join(",",@str) if (@str);
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/x509v3/
H A Dv3_utl.c71 static void str_free(OPENSSL_STRING str);
392 unsigned char *string_to_hex(const char *str, long *len) argument
396 if(!str) {
400 if(!(hexbuf = OPENSSL_malloc(strlen(str) >> 1))) goto err;
401 for(p = (unsigned char *)str, q = hexbuf; *p;) {
542 static void str_free(OPENSSL_STRING str) argument
544 OPENSSL_free(str);
/barrelfish-2018-10-04/lib/lwip2/src/netif/ppp/
H A Dccp.c282 char *str, *endp; local
284 str = *argv;
285 abits = rbits = strtol(str, &endp, 0);
286 if (endp != str && *endp == ',') {
287 str = endp + 1;
288 abits = strtol(str, &endp, 0);
290 if (*endp != 0 || endp == str) {
321 char *str, *endp; local
323 str = *argv;
324 abits = rbits = strtol(str,
[all...]
/barrelfish-2018-10-04/include/lwip2/netif/ppp/
H A Dccp.c282 char *str, *endp; local
284 str = *argv;
285 abits = rbits = strtol(str, &endp, 0);
286 if (endp != str && *endp == ',') {
287 str = endp + 1;
288 abits = strtol(str, &endp, 0);
290 if (*endp != 0 || endp == str) {
321 char *str, *endp; local
323 str = *argv;
324 abits = rbits = strtol(str,
[all...]
/barrelfish-2018-10-04/include/openssl/
H A Dasn1.h797 int ASN1_STRING_copy(ASN1_STRING *dst, const ASN1_STRING *str);
803 int ASN1_STRING_set(ASN1_STRING *str, const void *data, int len);
804 void ASN1_STRING_set0(ASN1_STRING *str, void *data, int len);
847 int ASN1_UTCTIME_set_string(ASN1_UTCTIME *s, const char *str);
857 int ASN1_GENERALIZEDTIME_set_string(ASN1_GENERALIZEDTIME *s, const char *str);
862 int ASN1_OCTET_STRING_set(ASN1_OCTET_STRING *str, const unsigned char *data, int len);
870 int UTF8_getc(const unsigned char *str, int len, unsigned long *val);
871 int UTF8_putc(unsigned char *str, int len, unsigned long value);
892 int ASN1_TIME_set_string(ASN1_TIME *s, const char *str);
998 int ASN1_STRING_print_ex_fp(FILE *fp, ASN1_STRING *str, unsigne
[all...]
/barrelfish-2018-10-04/lib/openssl-1.0.0d/crypto/dsa/
H A Ddsa_ameth.c149 ASN1_STRING *str; local
150 str = ASN1_STRING_new();
151 str->length = i2d_DSAparams(dsa, &str->data);
152 if (str->length <= 0)
157 pval = str;
/barrelfish-2018-10-04/lib/libc/nameser/
H A Dns_print.c598 const char *str = "record too long to print"; local
599 T(addstr(str, strlen(str), &buf, &buflen));
889 const char *str = "record too long to print"; local
890 T(addstr(str, strlen(str), &buf, &buflen));
981 const char *str = "record too long to print"; local
982 T(addstr(str, strlen(str), &buf, &buflen));
1021 const char *str local
[all...]
/barrelfish-2018-10-04/lib/lwip2/src/apps/tftp/
H A Dtftp_server.c118 send_error(const ip_addr_t *addr, u16_t port, enum tftp_error code, const char *str) argument
120 int str_length = strlen(str);
132 MEMCPY(&payload[2], str, str_length + 1);

Completed in 172 milliseconds

1234567891011>>