Searched refs:object (Results 101 - 125 of 1426) sorted by relevance

1234567891011>>

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/sound/pci/asihpi/
H A Dhpidebug.c89 "NODE is invalid object"})
121 unsigned int object; local
124 object = function / HPI_OBJ_FUNCTION_SPACING;
125 function = function - object * HPI_OBJ_FUNCTION_SPACING;
127 if (object == 0 || object == HPI_OBJ_NODE
128 || object > hpi_function_strings.num_elements)
129 return "invalid object";
131 tmp = get_treenode_elem(&hpi_function_strings, object - 1,
143 if ((phm->object <
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/fs/cachefiles/
H A Drdwr.c1 /* Storage object read/write
28 struct cachefiles_object *object; local
55 object = container_of(monitor->op->op.object,
58 spin_lock(&object->work_lock);
60 spin_unlock(&object->work_lock);
73 static int cachefiles_read_reissue(struct cachefiles_object *object, argument
76 struct address_space *bmapping = object->backer->d_inode->i_mapping;
81 object->backer->d_inode->i_ino,
137 spin_lock_irq(&object
151 struct cachefiles_object *object; local
225 cachefiles_read_backing_file_one(struct cachefiles_object *object, struct fscache_retrieval *op, struct page *netpage, struct pagevec *pagevec) argument
395 struct cachefiles_object *object; local
466 cachefiles_read_backing_file(struct cachefiles_object *object, struct fscache_retrieval *op, struct list_head *list, struct pagevec *mark_pvec) argument
693 struct cachefiles_object *object; local
807 struct cachefiles_object *object; local
848 struct cachefiles_object *object; local
890 struct cachefiles_object *object; local
974 struct cachefiles_object *object; local
[all...]
H A Dmain.c45 struct cachefiles_object *object = _object; local
47 memset(object, 0, sizeof(*object));
48 spin_lock_init(&object->work_lock);
62 /* create an object jar */
72 "CacheFiles: Failed to allocate an object jar\n");
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/avahi-0.6.25/avahi-compat-howl/include/
H A Dhowl.h37 #include <corby/object.h>
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/minidlna/
H A Dscanner.h37 insert_file(char * name, const char * path, const char * parentID, int object);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/avahi-0.6.25/avahi-compat-howl/include/
H A Dhowl.h37 #include <corby/object.h>
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/include/wx/gtk/
H A Dassertdlg_gtk.h21 #define GTK_ASSERT_DIALOG(object) (G_TYPE_CHECK_INSTANCE_CAST ((object), GTK_TYPE_ASSERT_DIALOG, GtkAssertDialog))
23 #define GTK_IS_ASSERT_DIALOG(object) (G_TYPE_CHECK_INSTANCE_TYPE ((object), GTK_TYPE_ASSERT_DIALOG))
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/drm/
H A Ddrm_global.h43 void *object; member in struct:drm_global_reference
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/bind/serial/
H A DSerialBase.java18 * object has a byte array buffer that is resized when it is full. The
23 * subclasses to take over creation of the FastOutputStream object.</p>
77 * @param object is the object to be written to the serial output, and may
84 protected FastOutputStream getSerialOutput(Object object) { argument
H A DSerialBinding.java21 * a serialized object.
23 * <p>This binding stores objects in serialized object format. The
98 * Deserialize an object from an entry buffer. May only be called for data
101 * {@link SerialInput} is used to deserialize the object.
105 * @return the output deserialized object.
131 * Serialize an object into an entry buffer. The fixed serialization
134 * must be used. {@link SerialOutput} is used to serialize the object.
140 * @param object is the input deserialized object.
144 * @throws IllegalArgumentException if the object i
147 objectToEntry(Object object, DatabaseEntry entry) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/bind/tuple/
H A DTupleBinding.java77 public void objectToEntry(Object object, DatabaseEntry entry) { argument
79 TupleOutput output = getTupleOutput(object);
80 objectToEntry(object, output);
85 * Constructs a key or data object from a {@link TupleInput} entry.
89 * @return the key or data object constructed from the entry.
94 * Converts a key or data object to a tuple entry.
96 * @param object is the key or data object.
101 public abstract void objectToEntry(Object object, TupleOutput output); argument
H A DTupleTupleMarshalledBinding.java19 * interface to convert between the data entry and entity object. It calls the
21 * the key entry and the entity object. These two interfaces must both be
31 * Creates a tuple-tuple marshalled binding object.
45 // The entity class will be used to instantiate the entity object.
81 public void objectToKey(Object object, TupleOutput output) { argument
83 MarshalledTupleKeyEntity entity = (MarshalledTupleKeyEntity) object;
88 public void objectToData(Object object, TupleOutput output) { argument
90 MarshalledTupleEntry entity = (MarshalledTupleEntry) object;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/persist/model/
H A DPersistentProxy.java24 * PersistentProxy} object.</p>
42 * same way as for any persistent object.</p>
44 * <p>When an instance of the proxy object is deserialized after it is
62 * public void initializeProxy(Locale object) {
63 * language = object.getLanguage();
64 * country = object.getCountry();
65 * variant = object.getVariant();
94 * <p>Currently a proxied object may not contain a reference to itself. For
99 * store such an object is made, an {@code IllegalArgumentException} will be
110 void initializeProxy(T object); argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/test/scr024/src/com/sleepycat/collections/test/
H A DTestEntityBinding.java48 public void objectToKey(Object object, DatabaseEntry key) { argument
50 byte val = (byte) ((TestEntity) object).key;
58 public void objectToData(Object object, DatabaseEntry value) { argument
60 byte val = (byte) ((TestEntity) object).value;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/acpi/acpica/
H A Dutglobal.c432 /* Printable names of the ACPI object types */
500 char *acpi_ut_get_node_name(void *object) argument
502 struct acpi_namespace_node *node = (struct acpi_namespace_node *)object;
506 if (!object) {
512 if ((object == ACPI_ROOT_OBJECT) || (object == acpi_gbl_root_node)) {
537 * PARAMETERS: Object - An ACPI object
541 * DESCRIPTION: Validate object and return the descriptor type
545 /* Printable names of object descriptor types */
566 char *acpi_ut_get_descriptor_name(void *object) argument
607 acpi_ut_get_reference_name(union acpi_operand_object *object) argument
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/net/tipc/
H A Dref.h2 * net/tipc/ref.h: Include file for TIPC object registry code
43 u32 tipc_ref_acquire(void *object, spinlock_t **lock);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/minidlna-1.1.5/
H A Ddepcomp43 object Object file output by 'PROGRAMS ARGS'.
94 # $object: dependency.h
98 { sed -e "s,^.*\.[$lower]*:,$object:," < "$tmpdepfile"
119 if test -z "$depmode" || test -z "$source" || test -z "$object"; then
120 echo "depcomp: Variables source, object and depmode must be set" 1>&2
125 depfile=${depfile-`echo "$object" |
185 -c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;;
224 echo "$object : \\" > "$depfile"
238 ## to the object. Take care to not repeat it in the output.
242 | sed -e 's/^\\$//' -e '/^$/d' -e "s|.*$object
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/gsoap/source/
H A Ddepcomp28 if test -z "$depmode" || test -z "$source" || test -z "$object"; then
29 echo "depcomp: Variables source, object and depmode must be set" 1>&2
34 depfile=${depfile-`echo "$object" | sed 's,\([^/]*\)$,.deps/\1,;s/\.\([^.]*\)$/.P\1/'`}
60 "$@" -MT "$object" -MD -MP -MF "$tmpdepfile"
91 echo "$object : \\" > "$depfile"
135 echo "$object : \\" > "$depfile"
167 # Also, the AIX compiler puts `$object:' at the start of each line;
168 # $object doesn't have directory information.
169 stripped=`echo "$object" | sed -e 's,^.*/,,' -e 's/\(.*\)\..*$/\1/'`
188 # `$object
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/curl/curl-7.36.0/
H A Ddepcomp43 object Object file output by 'PROGRAMS ARGS'.
94 # $object: dependency.h
98 { sed -e "s,^.*\.[$lower]*:,$object:," < "$tmpdepfile"
119 if test -z "$depmode" || test -z "$source" || test -z "$object"; then
120 echo "depcomp: Variables source, object and depmode must be set" 1>&2
125 depfile=${depfile-`echo "$object" |
185 -c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;;
224 echo "$object : \\" > "$depfile"
238 ## to the object. Take care to not repeat it in the output.
242 | sed -e 's/^\\$//' -e '/^$/d' -e "s|.*$object
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-tools/examples/hello-c++-kde/admin/
H A Ddepcomp28 if test -z "$depmode" || test -z "$source" || test -z "$object"; then
29 echo "depcomp: Variables source, object and depmode must be set" 1>&2
34 depfile=${depfile-`echo "$object" | sed 's,\([^/]*\)$,.deps/\1,;s/\.\([^.]*\)$/.P\1/'`}
60 "$@" -MT "$object" -MD -MP -MF "$tmpdepfile"
91 echo "$object : \\" > "$depfile"
135 echo "$object : \\" > "$depfile"
167 # Also, the AIX compiler puts `$object:' at the start of each line;
168 # $object doesn't have directory information.
169 stripped=`echo "$object" | sed -e 's,^.*/,,' -e 's/\(.*\)\..*$/\1/'`
188 # `$object
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/gsoap/source_build_platform/
H A Ddepcomp28 if test -z "$depmode" || test -z "$source" || test -z "$object"; then
29 echo "depcomp: Variables source, object and depmode must be set" 1>&2
34 depfile=${depfile-`echo "$object" | sed 's,\([^/]*\)$,.deps/\1,;s/\.\([^.]*\)$/.P\1/'`}
60 "$@" -MT "$object" -MD -MP -MF "$tmpdepfile"
91 echo "$object : \\" > "$depfile"
135 echo "$object : \\" > "$depfile"
167 # Also, the AIX compiler puts `$object:' at the start of each line;
168 # $object doesn't have directory information.
169 stripped=`echo "$object" | sed -e 's,^.*/,,' -e 's/\(.*\)\..*$/\1/'`
188 # `$object
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/docs/latex/wx/
H A Dwindowdc.tex5 This should normally be constructed as a temporary stack object; don't store
6 a wxWindowDC object.
8 To draw on a window from inside {\bf OnPaint}, construct a \helpref{wxPaintDC}{wxpaintdc} object.
10 To draw on the client area of a window from outside {\bf OnPaint}, construct a \helpref{wxClientDC}{wxclientdc} object.
12 To draw on the whole window including decorations, construct a \helpref{wxWindowDC}{wxwindowdc} object
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/mm/
H A Dkmemcheck.c59 void kmemcheck_slab_alloc(struct kmem_cache *s, gfp_t gfpflags, void *object, argument
82 kmemcheck_mark_initialized(object, size);
88 kmemcheck_mark_uninitialized(object, size);
92 void kmemcheck_slab_free(struct kmem_cache *s, void *object, size_t size) argument
96 kmemcheck_mark_freed(object, size);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/dbus-1.6.8/
H A Ddepcomp44 object Object file output by 'PROGRAMS ARGS'.
66 if test -z "$depmode" || test -z "$source" || test -z "$object"; then
67 echo "depcomp: Variables source, object and depmode must be set" 1>&2
72 depfile=${depfile-`echo "$object" |
129 -c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;;
166 echo "$object : \\" > "$depfile"
181 ## to the object. Take care to not repeat it in the output.
184 sed -e 's/^\\$//' -e '/^$/d' -e "s|.*$object$||" -e '/:$/d' \
211 echo "$object : \\" > "$depfile"
247 # current directory. Also, the AIX compiler puts '$object
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/openvpn-2.3.1/
H A Ddepcomp44 object Object file output by 'PROGRAMS ARGS'.
66 if test -z "$depmode" || test -z "$source" || test -z "$object"; then
67 echo "depcomp: Variables source, object and depmode must be set" 1>&2
72 depfile=${depfile-`echo "$object" |
129 -c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;;
166 echo "$object : \\" > "$depfile"
181 ## to the object. Take care to not repeat it in the output.
184 sed -e 's/^\\$//' -e '/^$/d' -e "s|.*$object$||" -e '/:$/d' \
211 echo "$object : \\" > "$depfile"
247 # current directory. Also, the AIX compiler puts '$object
[all...]

Completed in 338 milliseconds

1234567891011>>