Lines Matching defs:id
49 * not matter. In order for the id to not be unique, the same thread would
207 new_unique_id.thread_index = htonl((unsigned int)r->connection->id);
248 * There are two ways the generation of a unique id can be triggered:
257 const char **id)
266 *id = apr_table_get(r->subprocess_env, "UNIQUE_ID");
268 if (!*id)
269 *id = gen_unique_id(r);
275 const char *id = NULL;
280 id = apr_table_get(r->subprocess_env, "REDIRECT_UNIQUE_ID");
283 if (!id) {
284 /* if we have a log id, it was set by our generate_log_id() function
285 * and we should reuse the same id
287 id = r->log_id;
290 if (!id) {
291 id = gen_unique_id(r);
295 apr_table_setn(r->subprocess_env, "UNIQUE_ID", id);