Lines Matching refs:eval
90 static ASL_STATUS _asl_send_message(asl_object_t obj, uint32_t eval, asl_msg_t *msg, const char *ms…
551 _asl_lib_vlog(asl_object_t obj, uint32_t eval, asl_object_t msg, const char *format, va_list ap) in _asl_lib_vlog() argument
631 status = _asl_send_message(obj, eval, (asl_msg_t *)msg, str); in _asl_lib_vlog()
649 uint32_t eval = _asl_evaluate_send(client, msg, level); in asl_vlog() local
650 if (eval == EVAL_IGNORE) return 0; in asl_vlog()
652 ASL_STATUS status = _asl_lib_vlog(client, eval, msg, format, ap); in asl_vlog()
667 _asl_lib_log(asl_object_t client, uint32_t eval, asl_object_t msg, const char *format, ...) in _asl_lib_log() argument
670 if (eval == EVAL_IGNORE) return 0; in _asl_lib_log()
674 status = _asl_lib_vlog(client, eval, msg, format, ap); in _asl_lib_log()
693 uint32_t eval = _asl_evaluate_send(client, msg, level); in asl_log() local
694 if (eval == EVAL_IGNORE) return 0; in asl_log()
698 status = _asl_lib_vlog(client, eval, msg, format, ap); in asl_log()
716 uint32_t eval = _asl_evaluate_send(NULL, NULL, level); in asl_log_message() local
717 if (eval == EVAL_IGNORE) return 0; in asl_log_message()
721 status = _asl_lib_vlog(NULL, eval, NULL, format, ap); in asl_log_message()
953 _asl_send_message(asl_object_t obj, uint32_t eval, asl_msg_t *msg, const char *mstr) in _asl_send_message() argument
966 if (eval == EVAL_IGNORE) return ASL_STATUS_OK; in _asl_send_message()
982 level = eval & LEVEL_MASK; in _asl_send_message()
984 eval &= EVAL_MASK; in _asl_send_message()
1009 if (eval & EVAL_TUNNEL) in _asl_send_message()
1092 if (((eval & EVAL_TUNNEL) == 0) && (_asl_global.quota != UINT32_MAX)) in _asl_send_message()
1118 eval |= EVAL_QUOTA; in _asl_send_message()
1123 eval &= ~EVAL_SEND; in _asl_send_message()
1132 if ((_asl_global.server_port != MACH_PORT_NULL) && (eval & EVAL_SEND)) in _asl_send_message()
1138 if (eval & EVAL_QUOTA) in _asl_send_message()
1224 uint32_t eval = _asl_evaluate_send(obj, msg, -1); in asl_client_internal_send() local
1225 if (eval != 0) status = _asl_send_message(obj, eval, (asl_msg_t *)msg, NULL); in asl_client_internal_send()
1290 uint32_t eval = _asl_evaluate_send(NULL, (asl_object_t)aux, -1); in _asl_auxiliary() local
1291 status = _asl_send_message(NULL, eval, aux, NULL); in _asl_auxiliary()
1343 uint32_t eval; in _asl_auxiliary()
1349 eval = _asl_evaluate_send(NULL, (asl_object_t)aux, -1); in _asl_auxiliary()
1350 _asl_send_message(NULL, eval, aux, NULL); in _asl_auxiliary()
1522 uint32_t eval = _asl_evaluate_send(NULL, (asl_object_t)aux_msg, -1); in asl_close_auxiliary_file() local
1523 if (_asl_send_message(NULL, eval, aux_msg, NULL) != ASL_STATUS_OK) status = -1; in asl_close_auxiliary_file()