Searched refs:string (Results 1 - 25 of 231) sorted by relevance

12345678910

/darwin-on-arm/xnu/libkern/c++/
H A DOSString.cpp31 #include <string.h>
37 #include <string.h>
70 return initWithCString(aString->string);
79 string = (char *) kalloc(length);
80 if (!string)
83 bcopy(cString, string, length);
97 string = const_cast<char *>(cString);
151 me->length = vsnprintf(me->string, 256, format, argList);
166 if ( !(flags & kOSStringNoCopy) && string) {
167 kfree(string, (vm_size_
[all...]
H A DOSSymbol.cpp30 #include <string.h>
39 #include <string.h>
278 && (strncmp(probeSymbol->string, cString, probeSymbol->length) == 0))
286 && (strncmp(probeSymbol->string, cString, probeSymbol->length) == 0))
295 const char *cString = sym->string;
315 && strncmp(probeSymbol->string, cString, probeSymbol->length) == 0)
334 && strncmp(probeSymbol->string, cString, probeSymbol->length) == 0)
359 hashSymbol(sym->string, &hash, &inLen); inLen++;
365 // couldn't find the symbol; probably means string hash changed
380 // couldn't find the symbol; probably means string has
[all...]
/darwin-on-arm/xnu/bsd/dev/random/YarrowCoreLib/src/
H A DyarrowUtils.c45 #include <string.h>
/darwin-on-arm/xnu/bsd/kern/
H A Dkpi_mbuf_internal.h34 extern errno_t mbuf_tag_id_find_internal(const char *string,
/darwin-on-arm/xnu/tools/tests/libMicro/
H A Drecurse2.c31 #include <string.h>
H A Delided.c39 #include <string.h>
H A Dexec_bin.c38 #include <string.h>
H A Drecurse.c35 #include <string.h>
H A Dexec.c38 #include <string.h>
/darwin-on-arm/xnu/bsd/dev/arm/
H A Dmemmove.c43 #include <string.h>
/darwin-on-arm/xnu/bsd/dev/i386/
H A Dmemmove.c43 #include <string.h>
/darwin-on-arm/xnu/libkern/
H A DOSKextVersion.c113 const char * string; local
119 string = *string_p;
121 if (__vers_isspace(string[0]) || string[0] == '\0') {
124 switch (string[0]) {
126 if (__vers_isdigit(string[1])) {
127 *string_p = &string[1];
132 if (__vers_isdigit(string[1])) {
133 *string_p = &string[1];
138 if (__vers_isdigit(string[
[all...]
/darwin-on-arm/xnu/iokit/Kernel/
H A DWKdm.h135 #define DEBUG_PRINT_1(string) printf (string)
136 #define DEBUG_PRINT_2(string,value) printf(string, value)
138 #define DEBUG_PRINT_1(string)
139 #define DEBUG_PRINT_2(string, value)
/darwin-on-arm/xnu/libkern/libkern/
H A DWKdm.h135 #define DEBUG_PRINT_1(string) printf (string)
136 #define DEBUG_PRINT_2(string,value) printf(string, value)
138 #define DEBUG_PRINT_1(string)
139 #define DEBUG_PRINT_2(string, value)
/darwin-on-arm/xnu/osfmk/arm/
H A Dcpufunc.h66 extern void arm_setup(char *string);
/darwin-on-arm/xnu/osfmk/libsa/
H A DMakefile11 string.h \
/darwin-on-arm/xnu/tools/tests/libMicro/apple/
H A Dposix_spawn_bin.c41 #include <string.h>
H A Dgeekbench_stdlib_write.c66 #include <string.h>
H A Dposix_spawn.c41 #include <string.h>
/darwin-on-arm/xnu/bsd/net/
H A Dnet_str_id.c40 #include <string.h>
99 net_str_id_find_internal(const char *string, u_int32_t *out_id, argument
105 if (string == NULL || out_id == NULL || kind >= NSI_MAX_KIND)
113 if (strcmp(string, entry->nsi_string) == 0) {
124 entry = kalloc(NET_ID_STR_ENTRY_SIZE(string));
130 strlcpy(entry->nsi_string, string, strlen(string) + 1);
/darwin-on-arm/xnu/osfmk/i386/vmx/
H A Dvmx_shims.c29 #include <string.h>
/darwin-on-arm/xnu/tools/tests/xnu_quick_test/
H A Datomic_fifo_queue_test.c5 #include <string.h>
22 warnx("OSAtomicFifoDequeue returned incorrect string. Expected %s, got %s", str1, node_ptr->str);
27 warnx("OSAtomicFifoDequeue returned incorrect string. Expected %s, got %s", str2, node_ptr->str);
/darwin-on-arm/xnu/security/
H A Dmac_task.c129 mac_task_label_internalize(struct label *label, char *string) argument
133 error = MAC_INTERNALIZE(task, label, string);
/darwin-on-arm/xnu/iokit/IOKit/
H A Dsystem.h45 #include <string.h>
/darwin-on-arm/xnu/pexpert/pexpert/
H A Dprotos.h38 #include <string.h>

Completed in 86 milliseconds

12345678910