Searched refs:app (Results 1 - 25 of 68) sorted by relevance

123

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/os_brew/
H A Dos_abort.c20 AEEApplet *app; local
24 app = (AEEApplet *)GETAPPINSTANCE();
25 ISHELL_CloseApplet(app->m_pIShell, FALSE);
H A Dos_pid.c23 AEEApplet *app; local
28 app = (AEEApplet *)GETAPPINSTANCE();
29 *pidp = (pid_t)ISHELL_ActiveApplet(app->m_pIShell);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/docs_src/ref/cam/
H A DMakefile3 BUILD= app.html fail.html intro.html
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/ipv4/ipvs/
H A Dip_vs_app.c50 static inline int ip_vs_app_get(struct ip_vs_app *app) argument
53 if (app->module)
54 return try_module_get(app->module);
60 static inline void ip_vs_app_put(struct ip_vs_app *app) argument
62 if (app->module)
63 module_put(app->module);
68 * Allocate/initialize app incarnation and register it in proto apps.
71 ip_vs_app_inc_new(struct ip_vs_app *app, __u16 proto, __u16 port) argument
83 inc = kmemdup(app, sizeof(*inc), GFP_KERNEL);
88 inc->app
172 register_ip_vs_app_inc(struct ip_vs_app *app, __u16 proto, __u16 port) argument
189 register_ip_vs_app(struct ip_vs_app *app) argument
208 unregister_ip_vs_app(struct ip_vs_app *app) argument
330 app_tcp_pkt_out(struct ip_vs_conn *cp, struct sk_buff **pskb, struct ip_vs_app *app) argument
382 struct ip_vs_app *app; local
405 app_tcp_pkt_in(struct ip_vs_conn *cp, struct sk_buff **pskb, struct ip_vs_app *app) argument
457 struct ip_vs_app *app; local
487 struct ip_vs_app *app, *inc; local
508 struct ip_vs_app *inc, *app; local
[all...]
H A Dip_vs_ftp.c58 ip_vs_ftp_init_conn(struct ip_vs_app *app, struct ip_vs_conn *cp) argument
65 ip_vs_ftp_done_conn(struct ip_vs_app *app, struct ip_vs_conn *cp) argument
119 static int ip_vs_ftp_out(struct ip_vs_app *app, struct ip_vs_conn *cp, argument
211 static int ip_vs_ftp_in(struct ip_vs_app *app, struct ip_vs_conn *cp, argument
331 struct ip_vs_app *app = &ip_vs_ftp; local
333 ret = register_ip_vs_app(app);
340 ret = register_ip_vs_app_inc(app, app->protocol, ports[i]);
344 app->name, i, ports[i]);
348 unregister_ip_vs_app(app);
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/dist/
H A Dapi_flags.c158 API **app, *ap, **p; local
162 for (app = api_list;
163 app != NULL && *app != NULL && app < api_end; ++app)
164 if (strcmp(api_name, (*app)->name) == 0)
168 if (app == NULL || app == api_end) {
169 cnt = app
247 API **app; local
356 API **app; local
375 API **app; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/flac-1.2.1/src/test_libFLAC/
H A Dmetadata_manip.c771 FLAC__StreamMetadata *block, *app, *padding; local
878 if(0 == (app = FLAC__metadata_object_new(FLAC__METADATA_TYPE_APPLICATION)))
880 memcpy(app->data.application.id, "duh", (FLAC__STREAM_METADATA_APPLICATION_ID_LEN/8));
898 if(!FLAC__metadata_simple_iterator_set_block(iterator, app, false))
1045 app->data.application.id[0] = 'e'; /* twiddle the id so that our comparison doesn't miss transposition */
1046 if(!FLAC__metadata_simple_iterator_insert_block_after(iterator, app, true))
1047 return die_ss_("FLAC__metadata_simple_iterator_insert_block_after(iterator, app, true)", iterator);
1048 if(!insert_to_our_metadata_(app, ++our_current_position, /*copy=*/true))
1050 our_metadata_.blocks[our_current_position+1]->length -= (FLAC__STREAM_METADATA_APPLICATION_ID_LEN/8) + app->length;
1061 app
1432 FLAC__StreamMetadata *block, *app, *padding; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/flac-1.2.1/src/test_libFLAC++/
H A Dmetadata_manip.cpp804 FLAC::Metadata::Application *app;
915 if(0 == (app = new FLAC::Metadata::Application()))
917 app->set_id((const unsigned char *)"duh");
937 if(!iterator.set_block(app, false))
1086 app->set_id((const unsigned char *)"euh"); /* twiddle the id so that our comparison doesn't miss transposition */
1087 if(!iterator.insert_block_after(app, true))
1088 return die_ss_("iterator.insert_block_after(app, true)", iterator);
1089 if(!insert_to_our_metadata_(app, ++our_current_position, /*copy=*/true))
1091 add_to_padding_length_(our_current_position+1, -((int)(FLAC__STREAM_METADATA_APPLICATION_ID_LEN/8) + (int)app->get_length()));
1102 app
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/netconf/
H A Dmain.c44 netconf_app_t *app; local
170 app = (netconf_app_t *) fw;
172 if (app->proto == IPPROTO_TCP)
174 else if (app->proto == IPPROTO_UDP)
176 printf("dpt:%hu", ntohs(app->dport[0]));
177 if (ntohs(app->dport[1]) > ntohs(app->dport[0]))
178 printf("-%hu", ntohs(app->dport[1]));
180 printf("to:%hu", ntohs(app->to[0]));
181 if (ntohs(app
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/router/shared/
H A Dnvparse.h40 extern bool valid_autofw_port(const netconf_app_t *app);
41 extern bool get_autofw_port(int which, netconf_app_t *app);
42 extern bool set_autofw_port(int which, const netconf_app_t *app);
H A Dnvparse.c63 valid_autofw_port(const netconf_app_t *app) argument
66 if (app->match.ipproto != IPPROTO_TCP && app->match.ipproto != IPPROTO_UDP)
70 if (ntohs(app->match.dst.ports[0]) > ntohs(app->match.dst.ports[1]))
74 if (app->proto != IPPROTO_TCP && app->proto != IPPROTO_UDP)
78 if (ntohs(app->dport[0]) > ntohs(app->dport[1]))
82 if (ntohs(app
94 get_autofw_port(int which, netconf_app_t *app) argument
209 set_autofw_port(int which, const netconf_app_t *app) argument
1471 netconf_app_t app; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/net/bluetooth/cmtp/
H A Dcapi.c78 struct cmtp_application *app = kzalloc(sizeof(*app), GFP_KERNEL); local
80 BT_DBG("session %p application %p appl %d", session, app, appl);
82 if (!app)
85 app->state = BT_OPEN;
86 app->appl = appl;
88 list_add_tail(&app->list, &session->applications);
90 return app;
93 static void cmtp_application_del(struct cmtp_session *session, struct cmtp_application *app) argument
95 BT_DBG("session %p application %p", session, app);
105 struct cmtp_application *app; local
527 struct cmtp_application *app; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/docs_src/ref/rep/
H A DMakefile3 BUILD= app.html base_meth.html bulk.html clock_skew.html comm.html \
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/examples_cxx/
H A DSequenceExample.cpp80 SequenceExample app; local
81 app.run((bool)(rflag == 1 ? true : false), database);
H A DLockExample.cpp89 LockExample app(home, maxlocks, do_unlink);
90 if ((ecode = app.error_code()) != 0)
92 app.run();
93 app.close(0);
H A DBtRecExample.cpp208 BtRecExample app(fp);
214 app.stats();
215 app.run();
H A DMpoolExample.cpp85 MpoolExample app; local
92 if ((ret = app.initdb(NULL, cachesize)) != 0)
94 if ((ret = app.run(hits, pagesize, npages)) != 0)
H A DAccessExample.cpp81 AccessExample app; local
82 app.run((bool)(rflag == 1 ? true : false), database);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/docs_src/ref/transapp/
H A DMakefile5 app.html \
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/examples_java/src/db/
H A DSequenceExample.java50 SequenceExample app = new SequenceExample();
51 app.run(removeExistingDatabase, databaseName);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/zlib-1.2.3/contrib/iostream/
H A Dzfstream.cpp30 } else if ( io_mode & ios::app ) {
31 mode = ios::app;
44 if ( io_mode & (ios::out|ios::app )) {
72 } else if ( io_mode & ios::app ) {
73 mode = ios::app;
86 if ( io_mode & (ios::out|ios::app )) {
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/zlib-1.2.3/contrib/iostream/
H A Dzfstream.cpp30 } else if ( io_mode & ios::app ) {
31 mode = ios::app;
44 if ( io_mode & (ios::out|ios::app )) {
72 } else if ( io_mode & ios::app ) {
73 mode = ios::app;
86 if ( io_mode & (ios::out|ios::app )) {
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/examples_c/ex_rep/base/
H A Drep_msg.c50 APP_DATA *app; local
76 app = dbenv->app_private;
118 if (app->elected) {
119 app->elected = 0;
204 if (app->elected) {
205 app->elected = 0;
446 APP_DATA *app; local
452 app = dbenv->app_private;
459 if (app->elected) {
460 app
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/db-4.7.25.NC/test/scr015/
H A DTestKeyRange.cpp55 TestKeyRange app; local
56 app.run();
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/curl-7.23.1/source/docs/examples/
H A DMakefile.inc4 https multi-app multi-debugcallback multi-double multi-post multi-single \

Completed in 144 milliseconds

123