Lines Matching refs:key
58 * Win32 Only: Open the specified registry key.
59 * @param newkey The opened registry key
60 * @param parentkey The open registry key of the parent, or one of
70 * @param keyname The path of the key relative to the parent key
73 * APR_READ open key for reading
74 * APR_WRITE open key for writing
75 * APR_CREATE create the key if it doesn't exist
76 * APR_EXCL return error if APR_CREATE and key exists
87 * Win32 Only: Close the registry key opened or created by ap_regkey_open().
88 * @param key The registry key to close
90 AP_DECLARE(apr_status_t) ap_regkey_close(ap_regkey_t *key);
93 * Win32 Only: Remove the given registry key.
94 * @param parent The open registry key of the parent, or one of
104 * @param keyname The path of the key relative to the parent key
107 * all values within the given keyname, it will not remove a key
115 * Win32 Only: Retrieve a registry value string from an open key.
117 * @param key The registry key to retrieve the value from
125 ap_regkey_t *key,
130 * Win32 Only: Store a registry value string into an open key.
131 * @param key The registry key to store the value into
138 AP_DECLARE(apr_status_t) ap_regkey_value_set(ap_regkey_t *key,
145 * Win32 Only: Retrieve a raw byte value from an open key.
149 * @param key The registry key to retrieve the value from
156 ap_regkey_t *key,
161 * Win32 Only: Store a raw bytes value into an open key.
162 * @param key The registry key to store the value into
170 AP_DECLARE(apr_status_t) ap_regkey_value_raw_set(ap_regkey_t *key,
178 * Win32 Only: Retrieve a registry value string from an open key.
180 * @param key The registry key to retrieve the value from
185 ap_regkey_t *key,
190 * Win32 Only: Store a registry value string array into an open key.
191 * @param key The registry key to store the value into
197 AP_DECLARE(apr_status_t) ap_regkey_value_array_set(ap_regkey_t *key,
204 * Win32 Only: Remove a registry value from an open key.
205 * @param key The registry key to remove the value from
209 AP_DECLARE(apr_status_t) ap_regkey_value_remove(const ap_regkey_t *key,