Searched refs:text (Results 1 - 25 of 42) sorted by relevance

12

/xnu-2422.115.4/libsyscall/wrappers/
H A D__get_cpu_capabilities.s32 .text
42 .text
/xnu-2422.115.4/bsd/miscfs/devfs/
H A Dreproto.sh53 \$text[\$idx - 1] .= ';';
55 print PROTO "\$text[\$i]";
61 \$text[\$idx++] = \$_;
/xnu-2422.115.4/libkern/c++/Tests/TestSerialization/test2/
H A Dtest2_main.cpp143 IOLog("object unformatted = %s\n", s->text());
146 OSObject *d2 = OSUnserializeXML(s->text(), &errmsg);
159 IOLog("object unformatted = %s\n", s2->text());
162 strcmp(s->text(), s2->text()) ? "un":"");
/xnu-2422.115.4/osfmk/kern/
H A Dkext_alloc.c58 * On x86_64 systems, kernel extension text must remain within 2GB of the
59 * kernel's text segment. To ensure this happens, we snag 2GB of kernel VM
67 kernel_segment_command_t *text = NULL; local
77 text = getsegbyname(SEG_TEXT);
78 text_start = vm_map_trunc_page(text->vmaddr,
81 text_end = vm_map_round_page(text->vmaddr + text->vmsize,
120 printf("kext submap [0x%lx - 0x%lx], kernel text [0x%lx - 0x%lx]\n",
123 VM_KERNEL_UNSLIDE(text->vmaddr),
124 VM_KERNEL_UNSLIDE(text
[all...]
/xnu-2422.115.4/tools/tests/jitter/
H A Dcpu_number.s1 .text
/xnu-2422.115.4/libkern/c++/Tests/TestSerialization/test1/
H A Dtest1_main.cpp84 IOLog("object unformatted = %s\n", s->text());
87 OSObject *d2 = OSUnserializeXML(s->text(), &errmsg);
/xnu-2422.115.4/osfmk/i386/commpage/
H A Dcommpage_asm.s37 .text
H A Dcommpage.h67 .text ;\
81 .text
/xnu-2422.115.4/tools/tests/execperf/
H A Dexit-asm.S1 .text
/xnu-2422.115.4/security/
H A Dmac_audit.c206 * terminated ASCII text to the current audit record.
209 mac_audit_text(char *text, mac_policy_handle_t handle) argument
216 len = strlen(text);
222 * Make sure the text is only composed of only ASCII printable
226 if (text[i] < (char) 32 || text[i] > (char) 126)
234 strncat(sanitized, text, MAC_AUDIT_DATA_LIMIT - plen);
394 mac_audit_text(__unused char *text, __unused mac_policy_handle_t handle) argument
/xnu-2422.115.4/osfmk/x86_64/
H A Dlocore.s84 #define RECOVERY_SECTION .text
85 #define RECOVERY_SECTION .text
92 .text
98 .text ;\
105 .text
H A DWKdmDecompress_new.s69 .text
H A DWKdmCompress_new.s153 .text
/xnu-2422.115.4/EXTERNAL_HEADERS/architecture/i386/
H A Dasm_help.h69 .text ;\
144 * TEXT -- declare start of text segment
147 .text
286 .text
/xnu-2422.115.4/libkern/libkern/c++/
H A DOSSerialize.h119 * @function text
122 * Returns the XML text serialized so far.
127 virtual char * text() const;
/xnu-2422.115.4/osfmk/i386/
H A Dasm.h163 .text;\
253 #define Gcall(func) call *9f; .data; .align ALIGN; 9: .long func; .text
257 #define Gaddr(to,lab) movl 9f,to; .data; .align ALIGN; 9: .long lab; .text
258 #define Gcmp(lab,reg) cmpl reg,9f; .data; .align ALIGN; 9: .long lab; .text
259 #define Gmemload(lab,reg) movl 9f,reg; movl (reg),reg; .data; .align ALIGN; 9: .long lab; .text
260 #define Gmemstore(reg,lab,tmp) movl 9f,tmp; movl reg,(tmp); .data; .align ALIGN; 9: .long lab; .text
H A Dcpuid.h240 #define CACHE_DESC(value,type,size,linesize,text) \
241 { value, type, size, linesize, text }
243 #define CACHE_DESC(value,type,size,linesize,text) \
H A Di386_lock.s136 .text ; \
158 .text ; \
181 .text ; \
196 .text ; \
262 .text ;\
825 .text
1186 .text
1784 .text
1806 .text
1825 .text
[all...]
H A Dcpu_capabilities.h216 #define _COMM_PAGE32_TEXT_START (_COMM_PAGE32_BASE_ADDRESS+0x1000) /* start of text section */
223 /* setup start offset in the commpage text region for each jump table entry
232 #define _COMM_TEXT_UNUSED_OFFSET (0xd80) /* end of routines in text page */
246 #define _COMM_PAGE_TEXT_END (_COMM_PAGE_TEXT_START+_COMM_TEXT_PFZ_END_OFFSET) /* end of common text page */
261 .text /* Required to make a well behaved symbol file */
/xnu-2422.115.4/bsd/security/audit/
H A Daudit_bsm_token.c70 * text length 2 bytes
71 * text N bytes + 1 terminating NULL byte
74 au_to_arg32(char n, const char *text, u_int32_t v) argument
80 textlen = strlen(text);
90 ADD_STRING(dptr, text, textlen);
96 au_to_arg64(char n, const char *text, u_int64_t v) argument
102 textlen = strlen(text);
112 ADD_STRING(dptr, text, textlen);
118 au_to_arg(char n, const char *text, u_int32_t v) argument
121 return (au_to_arg32(n, text,
534 au_to_text(const char *text) argument
558 au_to_path(const char *text) argument
[all...]
H A Daudit_arg.c433 audit_arg_text(struct kaudit_record *ar, char *text) argument
436 KASSERT(text != NULL, ("audit_arg_text: text == NULL"));
438 /* Invalidate the text string */
440 if (text == NULL)
447 strncpy(ar->k_ar.ar_arg_text, text, MAXPATHLEN);
H A Daudit.h228 void audit_arg_text(struct kaudit_record *ar, char *text);
286 * It currently creates only text and data audit tokens.
/xnu-2422.115.4/bsd/bsm/
H A Daudit_record.h213 token_t *au_to_arg(char n, const char *text, uint32_t v);
214 token_t *au_to_arg32(char n, const char *text, uint32_t v);
215 token_t *au_to_arg64(char n, const char *text, uint64_t v);
278 token_t *au_to_text(const char *text);
/xnu-2422.115.4/libkern/c++/
H A DOSSerialize.cpp61 char * OSSerialize::text() const function in class:OSSerialize
/xnu-2422.115.4/libkern/libkern/
H A Dzlib.h125 int data_type; /* best guess about the data type: binary or text */
137 int text; /* true if compressed data believed to be text */ member in struct:gz_header_s
704 deflate(). The text, time, os, extra field, name, and comment information
714 If deflateSetHeader is not used, the default gzip header has text false,
857 The text, time, xflags, and os fields are filled in with the gzip header

Completed in 138 milliseconds

12