Searched refs:variable (Results 1 - 25 of 136) sorted by relevance

123456

/external/bluetooth/glib/tests/
H A Denv-test.c51 gchar *variable = "TEST_G_SETENV"; local
55 data = g_getenv (variable);
58 result = g_setenv (variable, value1, TRUE);
61 data = g_getenv (variable);
65 result = g_setenv (variable, value2, FALSE);
68 data = g_getenv (variable);
73 result = g_setenv (variable, value2, TRUE);
76 data = g_getenv (variable);
81 g_unsetenv (variable);
82 data = g_getenv (variable);
[all...]
/external/quake/quake/src/WinQuake/
H A Dcvar.cpp20 // cvar.c -- dynamic variable tracking
112 Con_Printf ("Cvar_Set: variable %s not found\n", var_name);
148 Adds a freestanding variable to the variable list.
151 void Cvar_RegisterVariable (cvar_t *variable) argument
156 if (Cvar_FindVar (variable->name))
158 Con_Printf ("Can't register variable %s, allready defined\n", variable->name);
163 if (Cmd_Exists (variable->name))
165 Con_Printf ("Cvar_RegisterVariable: %s is a command\n", variable
[all...]
H A Dcvar.h71 void Cvar_RegisterVariable (cvar_t *variable);
76 // equivelant to "<name> <variable>" typed at the console
88 // attempts to match a partial variable name for command line completion
93 // command. Returns true if the command was a variable reference that
97 // Writes lines containing "set variable value" for all variables
/external/webkit/WebCore/plugins/
H A DPluginDebug.h42 CString prettyNameForNPNVariable(NPNVariable variable);
43 CString prettyNameForNPPVariable(NPPVariable variable, void* value);
H A DPluginDebug.cpp84 CString prettyNameForNPNVariable(NPNVariable variable) argument
86 switch (variable) {
119 default: return "Unknown variable";
123 CString prettyNameForNPPVariable(NPPVariable variable, void* value) argument
125 switch (variable) {
162 default: return "Unknown variable";
H A Dnpapi.cpp137 NPError NPN_GetValue(NPP instance, NPNVariable variable, void* value) argument
142 return PluginView::getValueStatic(variable, value);
144 return pluginViewForInstance(instance)->getValue(variable, value);
147 NPError NPN_SetValue(NPP instance, NPPVariable variable, void* value) argument
149 return pluginViewForInstance(instance)->setValue(variable, value);
/external/quake/quake/src/QW/client/
H A Dcvar.c20 // cvar.c -- dynamic variable tracking
124 Con_Printf ("Cvar_Set: variable %s not found\n", var_name);
172 Adds a freestanding variable to the variable list.
175 void Cvar_RegisterVariable (cvar_t *variable) argument
180 if (Cvar_FindVar (variable->name))
182 Con_Printf ("Can't register variable %s, allready defined\n", variable->name);
187 if (Cmd_Exists (variable->name))
189 Con_Printf ("Cvar_RegisterVariable: %s is a command\n", variable
[all...]
H A Dcvar.h71 void Cvar_RegisterVariable (cvar_t *variable);
76 // equivelant to "<name> <variable>" typed at the console
88 // attempts to match a partial variable name for command line completion
93 // command. Returns true if the command was a variable reference that
97 // Writes lines containing "set variable value" for all variables
/external/qemu/distrib/sdl-1.2.12/
H A DMakefile31 $(error "The BUILD_SYSTEM variable was not defined by your configuration sub-makefile. Aborting")
/external/qemu/distrib/sdl-1.2.12/src/stdlib/
H A DSDL_getenv.c38 /* Put a variable of the form "name=value" into the environment */
39 int SDL_putenv(const char *variable) argument
45 sep = SDL_strchr(variable, '=');
49 bufferlen = SDL_strlen(variable)+1;
58 SDL_strlcpy(SDL_envmem, variable, bufferlen);
59 value = SDL_envmem + (sep - variable);
67 /* Retrieve a variable named "name" from the environment */
92 /* Put a variable of the form "name=value" into the environment */
93 int SDL_putenv(const char *variable) argument
102 if ( ! variable ) {
[all...]
/external/webkit/WebCore/plugins/qt/
H A DPluginPackageQt.cpp83 static NPError staticPluginQuirkRequiresGtkToolKit_NPN_GetValue(NPP instance, NPNVariable variable, void* value) argument
85 if (variable == NPNVToolkit) {
90 return NPN_GetValue(instance, variable, value);
/external/wpa_supplicant/
H A Deap.h118 * This integer variable is used to provide an outside timer that the
143 * get_bool - Get a boolean EAPOL state variable
144 * @variable: EAPOL boolean variable to get
145 * Returns: Value of the EAPOL variable
147 Boolean (*get_bool)(void *ctx, enum eapol_bool_var variable);
150 * set_bool - Set a boolean EAPOL state variable
152 * @variable: EAPOL boolean variable to set
153 * @value: Value for the EAPOL variable
[all...]
/external/wpa_supplicant_6/wpa_supplicant/src/eap_peer/
H A Deap.h118 * This integer variable is used to provide an outside timer that the
144 * get_bool - Get a boolean EAPOL state variable
145 * @variable: EAPOL boolean variable to get
146 * Returns: Value of the EAPOL variable
148 Boolean (*get_bool)(void *ctx, enum eapol_bool_var variable);
151 * set_bool - Set a boolean EAPOL state variable
153 * @variable: EAPOL boolean variable to set
154 * @value: Value for the EAPOL variable
[all...]
/external/icu4c/extra/uconv/
H A Dresfiles.mk5 # The variable FILESEPCHAR is defined by the caller to be
/external/icu4c/samples/legacy/
H A DMakefile11 # - set the variable ICU_PREFIX to point at $(prefix)
14 # - set the variable ICU_LEGACY (read the README)
70 @echo ICU_PREFIX variable is not set correctly
77 @echo ICU_LEGACY variable is not set correctly.
/external/e2fsprogs/ext2ed/
H A Ddir_com.c13 Most of the functions use the global variable file_info (along with the special directory fields there) to save
589 because it is of variable length.
595 unsigned char *ptr,buffer [80],variable [80],value [80],temp [80]; local
610 strncpy (variable,buffer,ptr-buffer);variable [ptr-buffer]=0;
613 if (strcasecmp ("inode",variable)==0) {
616 wprintw (command_win,"Variable %s set to %lu\n",variable,dir_entry_ptr->inode);refresh_command_win ();
620 if (strcasecmp ("rec_len",variable)==0) {
623 wprintw (command_win,"Variable %s set to %lu\n",variable,dir_entry_ptr->rec_len);refresh_command_win ();
627 if (strcasecmp ("name_len",variable)
[all...]
/external/libvpx/vp8/encoder/
H A Dparms.cpp74 string variable; local
84 config_file >> variable; local
92 x[variable] = value;
/external/protobuf/src/google/protobuf/io/
H A Dprinter.h52 // text with variable substitutions. Example usage:
71 // Print some text after applying variable substitutions. If a particular
72 // variable in the text is not defined, this will crash. Variables to be
74 // characters (as given to the constructor). The variable bindings are
81 void Print(const char* text, const char* variable, const string& value);
/external/webkit/WebKit/mac/Plugins/
H A Dnpapi.mm142 NPError NPN_GetValue(NPP instance, NPNVariable variable, void *value)
144 return [pluginViewForInstance(instance) getVariable:variable value:value];
147 NPError NPN_SetValue(NPP instance, NPPVariable variable, void *value)
149 return [pluginViewForInstance(instance) setVariable:variable value:value];
194 NPError NPN_GetValueForURL(NPP instance, NPNURLVariable variable, const char* url, char** value, uint32* len)
196 return [pluginViewForInstance(instance) getVariable:variable forURL:url value:value length:len];
199 NPError NPN_SetValueForURL(NPP instance, NPNURLVariable variable, const char* url, const char* value, uint32 len)
201 return [pluginViewForInstance(instance) setVariable:variable forURL:url value:value length:len];
/external/clearsilver/cs/
H A Dtest18.cs16 with extra variable
H A Dtest3.cs36 echo a variable: 3
47 echo a variable: 3
63 echo a variable: 3
/external/webkit/WebKitTools/DumpRenderTree/unix/TestNetscapePlugin/
H A DTestNetscapePlugin.cpp44 NPError NP_GetValue(void *future, NPPVariable variable, void *value);
248 webkit_test_plugin_get_value(NPP instance, NPPVariable variable, void *value) argument
252 switch (variable) {
268 fprintf(stderr, "Unhandled variable\n");
273 if (variable == NPPVpluginScriptableNPObject) {
285 webkit_test_plugin_set_value(NPP /*instance*/, NPNVariable /*variable*/, void* /*value*/)
337 NP_GetValue(void* /*future*/, NPPVariable variable, void *value) argument
339 return webkit_test_plugin_get_value(NULL, variable, value);
/external/webkit/WebKitExamplePlugins/NetscapeCoreAnimationPlugin/
H A Dmain.m67 NPError NPP_GetValue(NPP instance, NPPVariable variable, void *value);
68 NPError NPP_SetValue(NPP instance, NPNVariable variable, void *value);
220 NPError NPP_GetValue(NPP instance, NPPVariable variable, void *value)
224 switch (variable) {
243 NPError NPP_SetValue(NPP instance, NPNVariable variable, void *value)
/external/wpa_supplicant_6/wpa_supplicant/src/common/
H A Dieee802_11_defs.h249 u8 variable[0]; member in struct:ieee80211_mgmt::__anon6933::__anon6934
258 u8 variable[0]; member in struct:ieee80211_mgmt::__anon6933::__anon6936
265 u8 variable[0]; member in struct:ieee80211_mgmt::__anon6933::__anon6937
272 u8 variable[0]; member in struct:ieee80211_mgmt::__anon6933::__anon6938
283 u8 variable[0]; member in struct:ieee80211_mgmt::__anon6933::__anon6940
286 /* only variable items: SSID, Supported rates */
287 u8 variable[0]; member in struct:ieee80211_mgmt::__anon6933::__anon6941
295 u8 variable[0]; member in struct:ieee80211_mgmt::__anon6933::__anon6942
304 u8 variable[0]; member in struct:ieee80211_mgmt::__anon6933::__anon6943::__anon6944::__anon6945
318 u8 variable[ member in struct:ieee80211_mgmt::__anon6933::__anon6943::__anon6944::__anon6947
325 u8 variable[0]; /* FT Request */ member in struct:ieee80211_mgmt::__anon6933::__anon6943::__anon6944::__anon6948
[all...]
/external/bluetooth/glib/glib/
H A Dgutils.c430 * the <envar>PATHEXT</envar> environment variable.
437 * variable. If the program is found, the return value contains the
1064 * @variable: the environment variable to get, in the GLib file name encoding.
1066 * Returns the value of an environment variable. The name and value
1070 * environment variable's value contains references to other
1073 * Return value: the value of the environment variable, or %NULL if
1074 * the environment variable is not found. The returned string may be
1079 g_getenv (const gchar *variable) argument
1083 g_return_val_if_fail (variable !
1168 _g_getenv_nomalloc(const gchar *variable, gchar buffer[1024]) argument
1204 g_setenv(const gchar *variable, const gchar *value, gboolean overwrite) argument
1304 g_unsetenv(const gchar *variable) argument
3362 g_getenv(const gchar *variable) argument
3382 g_setenv(const gchar *variable, const gchar *value, gboolean overwrite) argument
3399 g_unsetenv(const gchar *variable) argument
[all...]

Completed in 217 milliseconds

123456