• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10.1/Security-57031.1.35/Security/authd/

Lines Matching defs:message

425 _process_find_copy_auth_token_from_xpc(process_t proc, xpc_object_t message, auth_token_t * auth_out)
431 AuthorizationBlob * blob = (AuthorizationBlob *)xpc_dictionary_get_data(message, AUTH_XPC_BLOB, &len);
484 authorization_create(connection_t conn, xpc_object_t message, xpc_object_t reply)
491 auth_rights_t rights = auth_rights_create_with_xpc(xpc_dictionary_get_value(message, AUTH_XPC_RIGHTS));
492 auth_items_t enviroment = auth_items_create_with_xpc(xpc_dictionary_get_value(message, AUTH_XPC_ENVIROMENT));
493 AuthorizationFlags flags = (AuthorizationFlags)xpc_dictionary_get_uint64(message, AUTH_XPC_FLAGS);
518 OSStatus authorization_create_with_audit_token(connection_t conn, xpc_object_t message, xpc_object_t reply)
528 const char * data = xpc_dictionary_get_data(message, AUTH_XPC_DATA, &len);
532 // auth_items_t enviroment = auth_items_create_with_xpc(xpc_dictionary_get_value(message, AUTH_XPC_ENVIROMENT));
533 AuthorizationFlags flags = (AuthorizationFlags)xpc_dictionary_get_uint64(message, AUTH_XPC_FLAGS);
556 authorization_free(connection_t conn, xpc_object_t message, xpc_object_t reply AUTH_UNUSED)
563 status = _process_find_copy_auth_token_from_xpc(proc, message, &auth);
566 flags = (AuthorizationFlags)xpc_dictionary_get_uint64(message, AUTH_XPC_FLAGS);
589 authorization_copy_rights(connection_t conn, xpc_object_t message, xpc_object_t reply)
597 auth_rights_t rights = auth_rights_create_with_xpc(xpc_dictionary_get_value(message, AUTH_XPC_RIGHTS));
598 auth_items_t enviroment = auth_items_create_with_xpc(xpc_dictionary_get_value(message, AUTH_XPC_ENVIROMENT));
599 AuthorizationFlags flags = (AuthorizationFlags)xpc_dictionary_get_uint64(message, AUTH_XPC_FLAGS);
602 status = _process_find_copy_auth_token_from_xpc(proc, message, &auth);
625 authorization_copy_info(connection_t conn, xpc_object_t message, xpc_object_t reply)
635 status = _process_find_copy_auth_token_from_xpc(proc, message, &auth);
640 tag = xpc_dictionary_get_string(message, AUTH_XPC_TAG);
672 authorization_make_external_form(connection_t conn, xpc_object_t message, xpc_object_t reply)
679 status = _process_find_copy_auth_token_from_xpc(proc, message, &auth);
701 authorization_create_from_external_form(connection_t conn, xpc_object_t message, xpc_object_t reply)
709 AuthorizationExternalForm * exForm = (AuthorizationExternalForm *)xpc_dictionary_get_data(message, AUTH_XPC_EXTERNAL, &len);
729 authorization_right_get(connection_t conn AUTH_UNUSED, xpc_object_t message, xpc_object_t reply)
737 rule = rule_create_with_string(xpc_dictionary_get_string(message, AUTH_XPC_RIGHT_NAME), dbconn);
865 authorization_enable_smartcard(connection_t conn, xpc_object_t message, xpc_object_t reply AUTH_UNUSED)
880 status = _process_find_copy_auth_token_from_xpc(proc, message, &auth);
888 enable_smartcard = xpc_dictionary_get_bool(message, AUTH_XPC_DATA);
945 authorization_right_set(connection_t conn, xpc_object_t message, xpc_object_t reply AUTH_UNUSED)
962 status = _process_find_copy_auth_token_from_xpc(proc, message, &auth);
965 require_action(xpc_dictionary_get_string(message, AUTH_XPC_RIGHT_NAME) != NULL, done, status = errAuthorizationInternal);
966 require_action(xpc_dictionary_get_value(message, AUTH_XPC_DATA) != NULL, done, status = errAuthorizationInternal);
968 rule_name = xpc_dictionary_get_string(message, AUTH_XPC_RIGHT_NAME);
979 cf_rule_dict = _CFXPCCreateCFObjectFromXPCObject(xpc_dictionary_get_value(message, AUTH_XPC_DATA));
1060 authorization_right_remove(connection_t conn, xpc_object_t message, xpc_object_t reply AUTH_UNUSED)
1070 status = _process_find_copy_auth_token_from_xpc(proc, message, &auth);
1075 rule = rule_create_with_string(xpc_dictionary_get_string(message, AUTH_XPC_RIGHT_NAME), dbconn);
1109 session_set_user_preferences(connection_t conn, xpc_object_t message, xpc_object_t reply)
1112 (void)message;