media/mtransport/third_party/nrappkit/src/registry/c2ru.h

Tue, 06 Jan 2015 21:39:09 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Tue, 06 Jan 2015 21:39:09 +0100
branch
TOR_BUG_9701
changeset 8
97036ab72558
permissions
-rw-r--r--

Conditionally force memory storage according to privacy.thirdparty.isolate;
This solves Tor bug #9701, complying with disk avoidance documented in
https://www.torproject.org/projects/torbrowser/design/#disk-avoidance.

michael@0 1 /*
michael@0 2 *
michael@0 3 * c2ru.h
michael@0 4 *
michael@0 5 * $Source: /Users/ekr/tmp/nrappkit-dump/nrappkit/src/registry/c2ru.h,v $
michael@0 6 * $Revision: 1.2 $
michael@0 7 * $Date: 2006/08/16 19:39:13 $
michael@0 8 *
michael@0 9 * c2r utility methods
michael@0 10 *
michael@0 11 *
michael@0 12 * Copyright (C) 2005, Network Resonance, Inc.
michael@0 13 * Copyright (C) 2006, Network Resonance, Inc.
michael@0 14 * All Rights Reserved
michael@0 15 *
michael@0 16 * Redistribution and use in source and binary forms, with or without
michael@0 17 * modification, are permitted provided that the following conditions
michael@0 18 * are met:
michael@0 19 *
michael@0 20 * 1. Redistributions of source code must retain the above copyright
michael@0 21 * notice, this list of conditions and the following disclaimer.
michael@0 22 * 2. Redistributions in binary form must reproduce the above copyright
michael@0 23 * notice, this list of conditions and the following disclaimer in the
michael@0 24 * documentation and/or other materials provided with the distribution.
michael@0 25 * 3. Neither the name of Network Resonance, Inc. nor the name of any
michael@0 26 * contributors to this software may be used to endorse or promote
michael@0 27 * products derived from this software without specific prior written
michael@0 28 * permission.
michael@0 29 *
michael@0 30 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS''
michael@0 31 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
michael@0 32 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
michael@0 33 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
michael@0 34 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
michael@0 35 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
michael@0 36 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
michael@0 37 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
michael@0 38 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
michael@0 39 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
michael@0 40 * POSSIBILITY OF SUCH DAMAGE.
michael@0 41 *
michael@0 42 *
michael@0 43 */
michael@0 44
michael@0 45 #ifndef __C2RU_H__
michael@0 46 #define __C2RU_H__
michael@0 47
michael@0 48 #include <sys/types.h>
michael@0 49 #include <r_types.h>
michael@0 50 #include <r_data.h>
michael@0 51 #include "registry_int.h"
michael@0 52
michael@0 53 int nr_c2ru_get_char(NR_registry parent, char *child, char **out);
michael@0 54 int nr_c2ru_get_uchar(NR_registry parent, char *child, UCHAR **out);
michael@0 55 int nr_c2ru_get_int2(NR_registry parent, char *child, INT2 **out);
michael@0 56 int nr_c2ru_get_uint2(NR_registry parent, char *child, UINT2 **out);
michael@0 57 int nr_c2ru_get_int4(NR_registry parent, char *child, INT4 **out);
michael@0 58 int nr_c2ru_get_uint4(NR_registry parent, char *child, UINT4 **out);
michael@0 59 int nr_c2ru_get_int8(NR_registry parent, char *child, INT8 **out);
michael@0 60 int nr_c2ru_get_uint8(NR_registry parent, char *child, UINT8 **out);
michael@0 61 int nr_c2ru_get_double(NR_registry parent, char *child, double **out);
michael@0 62 int nr_c2ru_get_data(NR_registry parent, char *child, Data **out);
michael@0 63 int nr_c2ru_get_string(NR_registry parent, char *child, char ***out);
michael@0 64
michael@0 65 int nr_c2ru_set_char(NR_registry parent, char *child, char *data);
michael@0 66 int nr_c2ru_set_uchar(NR_registry parent, char *child, UCHAR *data);
michael@0 67 int nr_c2ru_set_int2(NR_registry parent, char *child, INT2 *data);
michael@0 68 int nr_c2ru_set_uint2(NR_registry parent, char *child, UINT2 *data);
michael@0 69 int nr_c2ru_set_int4(NR_registry parent, char *child, INT4 *data);
michael@0 70 int nr_c2ru_set_uint4(NR_registry parent, char *child, UINT4 *data);
michael@0 71 int nr_c2ru_set_int8(NR_registry parent, char *child, INT8 *data);
michael@0 72 int nr_c2ru_set_uint8(NR_registry parent, char *child, UINT8 *data);
michael@0 73 int nr_c2ru_set_double(NR_registry parent, char *child, double *data);
michael@0 74 int nr_c2ru_set_registry(NR_registry parent, char *child);
michael@0 75 int nr_c2ru_set_data(NR_registry parent, char *child, Data *data);
michael@0 76 int nr_c2ru_set_string(NR_registry parent, char *child, char **data);
michael@0 77
michael@0 78 int nr_c2ru_free_char(char *data);
michael@0 79 int nr_c2ru_free_uchar(UCHAR *data);
michael@0 80 int nr_c2ru_free_int2(INT2 *data);
michael@0 81 int nr_c2ru_free_uint2(UINT2 *data);
michael@0 82 int nr_c2ru_free_int4(INT4 *data);
michael@0 83 int nr_c2ru_free_uint4(UINT4 *data);
michael@0 84 int nr_c2ru_free_int8(INT8 *data);
michael@0 85 int nr_c2ru_free_uint8(UINT8 *data);
michael@0 86 int nr_c2ru_free_double(double *data);
michael@0 87 int nr_c2ru_free_data(Data *data);
michael@0 88 int nr_c2ru_free_string(char **data);
michael@0 89
michael@0 90 int nr_c2ru_get_children(NR_registry parent, char *child, void *ptr, size_t size, int (*get)(NR_registry, void*));
michael@0 91 int nr_c2ru_set_children(NR_registry parent, char *child, void *ptr, int (*set)(NR_registry, void*), int (*label)(NR_registry, void*, char[NR_REG_MAX_NR_REGISTRY_LEN]));
michael@0 92 int nr_c2ru_free_children(void *ptr, int (*free)(void*));
michael@0 93
michael@0 94 int nr_c2ru_make_registry(NR_registry parent, char *child, NR_registry out);
michael@0 95
michael@0 96 #endif

mercurial