Home
last modified time | relevance | path

Searched refs:configs (Results 1 – 9 of 9) sorted by relevance

/xnu-10002.41.9/tests/ipc/
H A Dmach_msg2.c242 send_msg(send_configs_t configs) in send_msg() argument
246 for (int i = 0; i < configs.send_count; i++) { in send_msg()
247 if (configs.send_mode == MACH_MSG2) { in send_msg()
248 if (configs.send_options & MACH64_MSG_VECTOR) { in send_msg()
252 data_vecs[MACH_MSGV_IDX_MSG].msgv_data = (mach_vm_address_t)configs.msg; in send_msg()
253 data_vecs[MACH_MSGV_IDX_MSG].msgv_send_size = configs.msg_size; in send_msg()
256 if (configs.aux != NULL) { in send_msg()
257 data_vecs[MACH_MSGV_IDX_AUX].msgv_data = (mach_vm_address_t)configs.aux; in send_msg()
258 data_vecs[MACH_MSGV_IDX_AUX].msgv_send_size = configs.aux_size; in send_msg()
263 kr = mach_msg2(data_vecs, MACH64_SEND_MSG | MACH64_SEND_MQ_CALL | configs.send_options, in send_msg()
[all …]
/xnu-10002.41.9/tests/ktrace/
H A Dkpc_tests.c114 uint64_t *configs = calloc(nconfigs, sizeof(*configs)); in prepare_kpc() local
115 T_QUIET; T_ASSERT_NOTNULL(configs, "allocated config words"); in prepare_kpc()
118 configs[i] = event; in prepare_kpc()
121 ret = kpc_set_config(KPC_CLASS_CONFIGURABLE_MASK, configs); in prepare_kpc()
654 uint64_t *configs = calloc(nconfigs, sizeof(*configs)); variable
655 T_QUIET; T_ASSERT_NOTNULL(configs, "allocated config words");
658 ret = kpc_set_config(KPC_CLASS_RAWPMU_MASK, configs);
/xnu-10002.41.9/makedefs/
H A DMakeInc.top24 # "primary" build configs are done in serial.
108 # Target configs come in groups of three parameters. The first is the
207 # generate TARGET_CONFIGS for RELEASE kernel configs and products in the device map
212 # generate TARGET_CONFIGS for DEVELOPMENT kernel configs and products in the device map
216 # generate TARGET_CONFIGS for all kernel configs and products in the device map
221 # generate TARGET_CONFIGS for all kernel configs for B&I
224 # generate TARGET_CONFIGS for all kernel configs for B&I
263 # Build list of all kernel configurations present in all build configs.
312 # $(6) is which build configs to build in parallel
316 # configurations by generating sequential dependencies between configs
[all …]
H A DMakeInc.kernel45 # writes into their own $(TARGET) independent of other build configs
336 # config for an architecture) or "non-primary". Primary build configs
341 # build configs. Non-primary build configs will never compete for
343 # with other non-primary configs (and even primary configs)
H A DMakeInc.san53 # $(3) - build configs to get symbolset binaries from corresponding OBJDIR
H A DMakeInc.cmd409 # Similar to build configs, but alias configs are a 4-tuple
467 # $(1) - list of build configs
482 # $(1) - list of build configs
H A DMakeInc.def946 # do not utilize an export list. For these configs to build,
/xnu-10002.41.9/
H A DREADME.md162 5. Bless the volume with new configs.
166 The `--nextonly` flag specifies that use the `boot.plist` configs only for one boot.
/xnu-10002.41.9/tools/lldbmacros/
H A DREADME.md105 …|-core/ # Core logic about kernel, lldb value abstraction, configs etc. **DO NOT TOUCH THIS …
390 …kern.globals.page_size is your friend. Similarly use config['verbosity'] for finding about configs.