Lines Matching defs:data
305 char *data = NULL;
346 data = (argc >= 6) ? (char *)argv[5] : NULL; /* 5: usr option data, 6: six args needed for data */
349 ret = mount((const char *)NULL, fullpath, filessystemtype, mountfalgs, data);
351 ret = mount(argv[1], fullpath, filessystemtype, mountfalgs, data); /* 3: fs type */
386 data = (argc >= 5) ? (char *)argv[4] : NULL; /* 4: usr option data, 5: number of args needed for data */
389 ret = mount((const char *)NULL, fullpath, argv[2], mountfalgs, data);
391 ret = mount(argv[0], fullpath, argv[2], mountfalgs, data); /* 2: fs type */